Skip to content

Commit

Permalink
Fix wrong file name in error message in update-wp-env.php.
Browse files Browse the repository at this point in the history
  • Loading branch information
ecgan committed Apr 20, 2023
1 parent 7023a80 commit 1cadb36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/woocommerce/tests/e2e-pw/bin/update-wp-env.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public function __construct() {
if ( file_exists( $this->wp_env_path ) ) {
$this->wp_json = json_decode( file_get_contents( $this->wp_env_path ), true );
} else {
throw new Exception( ".wp_env.json doesn't exist!" );
throw new Exception( ".wp-env.json doesn't exist!" );
}

$env = getenv();
Expand Down

0 comments on commit 1cadb36

Please sign in to comment.