We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6cf166 commit e7b9980Copy full SHA for e7b9980
src/error.ts
@@ -18,9 +18,9 @@ export function getErrorMessage(type: CLIErrorType, args: any) {
18
args = args || {};
19
switch (type) {
20
case CLIErrorType.InvalidAccountType:
21
- return "First argument should be 'platform' or 'asset'";
+ return "Account-type should be 'platform' or 'asset'";
22
case CLIErrorType.InvalidAction:
23
- return `Second argument should one of the ${JSON.stringify(
+ return `Action should one of the ${JSON.stringify(
24
actions
25
)}`;
26
case CLIErrorType.OptionRequired:
0 commit comments