Skip to content

Commit

Permalink
Merge pull request #13 from Shailesh351/sb_fix_arg_userId
Browse files Browse the repository at this point in the history
[FIX] Passing userId with -i has no effect on deployment
  • Loading branch information
ear-dev committed Feb 7, 2022
2 parents e7c5e1d + 9593381 commit abd7a9c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion lib/commands/deploy.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default class Deploy extends Command {
password: flags.IOptionFlag<string>;
token: flags.IOptionFlag<string>;
verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
userid: flags.IOptionFlag<string>;
userId: flags.IOptionFlag<string>;
force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
update: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
code: flags.IOptionFlag<string>;
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/deploy.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/commands/watch.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default class Watch extends Command {
username: flags.IOptionFlag<string>;
password: flags.IOptionFlag<string>;
token: flags.IOptionFlag<string>;
userid: flags.IOptionFlag<string>;
userId: flags.IOptionFlag<string>;
verbose: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
force: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
code: flags.IOptionFlag<string>;
Expand Down
2 changes: 1 addition & 1 deletion lib/commands/watch.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default class Deploy extends Command {
char: 'v',
description: 'show additional details about the results of running the command',
}),
userid: flags.string({
userId: flags.string({
char: 'i',
description: 'UserID to use with API token (instead of username & password)',
}),
Expand Down
2 changes: 1 addition & 1 deletion src/commands/watch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default class Watch extends Command {
char: 't',
description: 'API token to use with UserID (instead of username & password)',
}),
userid: flags.string({
userId: flags.string({
char: 'i',
description: 'UserID to use with API token (instead of username & password)',
}),
Expand Down

0 comments on commit abd7a9c

Please sign in to comment.