Skip to content

Commit

Permalink
Corrected CLI error output
Browse files Browse the repository at this point in the history
Corrected CLI error output from --store-file to --store-path
  • Loading branch information
AnatolyPristensky committed Jul 27, 2021
1 parent 36b844a commit de5387d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/test/lib/uitest-preparer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ export class UITestPreparer {
if (this.storeFile || this.storePassword || this.keyAlias || this.keyPassword) {
if (!(this.storeFile && this.storePassword && this.keyAlias && this.keyPassword)) {
throw new Error(
"If keystore is used, all of the following arguments must be set: --store-file, --store-password, --key-alias, --key-password"
"If keystore is used, all of the following arguments must be set: --store-path, --store-password, --key-alias, --key-password"
);
}
}
Expand Down

0 comments on commit de5387d

Please sign in to comment.