We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b576301 commit 84eac74Copy full SHA for 84eac74
1 file changed
packages/cli/src/commands/ci.ts
@@ -13,7 +13,9 @@ export const registerCiCommand = (program: Command) => {
13
.command('update')
14
.description('Update game to the latest version')
15
.option('-s, --skip-update', 'Skip update')
16
- .action(ciUpdateCommand)
+ .action(async (options: { skipUpdate: boolean }) => {
17
+ return ciUpdateCommand(options.skipUpdate)
18
+ })
19
20
return ciCmd
21
}
0 commit comments