Skip to content

Commit

Permalink
[eas-cli] Fix flags
Browse files Browse the repository at this point in the history
Fixed flags for build:version:set and build:version:get commands

See: https://linear.app/expo/issue/ENG-9175/update-oclif-in-eas-cli
  • Loading branch information
radoslawkrzemien committed Nov 29, 2023
1 parent f9d8e24 commit 928d826
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eas-cli/src/commands/build/version/get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default class BuildVersionGetView extends EasCommand {
public static override description = 'get the latest version from EAS servers';

public static override flags = {
platform: Flags.enum({
platform: Flags.string({
char: 'p',
options: ['android', 'ios', 'all'],
}),
Expand Down
2 changes: 1 addition & 1 deletion packages/eas-cli/src/commands/build/version/set.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default class BuildVersionSetView extends EasCommand {
static override description = 'update version of an app';

static override flags = {
platform: Flags.enum({
platform: Flags.string({
char: 'p',
options: ['android', 'ios'],
}),
Expand Down

0 comments on commit 928d826

Please sign in to comment.