Skip to content

Commit

Permalink
integration path bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
froger-me committed Jan 9, 2024
1 parent f86abfb commit ac1a607
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function __construct( $package_file_path, $package_path ) {

$this->package_path = trailingslashit( $package_path );

if ( ! $wp_filesystem->exists( $package_path . 'wppus.json' ) ) {
if ( ! $wp_filesystem->exists( $package_path . '/wppus.json' ) ) {
throw new RuntimeException(
sprintf(
'The package updater cannot find the wppus.json file in "%s". ',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public function __construct( $package_file_path, $package_path ) {

$this->package_path = trailingslashit( $package_path );

if ( ! $wp_filesystem->exists( $package_path . 'wppus.json' ) ) {
if ( ! $wp_filesystem->exists( $package_path . '/wppus.json' ) ) {
throw new RuntimeException(
sprintf(
'The package updater cannot find the wppus.json file in "%s". ',
Expand Down

0 comments on commit ac1a607

Please sign in to comment.