From bd17286871972fb00cc51cb0aed973b6e64ab410 Mon Sep 17 00:00:00 2001 From: Valentin Fruchet Date: Thu, 21 Nov 2024 07:16:27 +0400 Subject: [PATCH] fix: Consider app transfer as a valid command --- cli/script/command-parser.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/script/command-parser.ts b/cli/script/command-parser.ts index afd641c..61fd940 100644 --- a/cli/script/command-parser.ts +++ b/cli/script/command-parser.ts @@ -322,6 +322,7 @@ yargs .command("list", "Lists the apps associated with your account", (yargs: yargs.Argv) => appList("list", yargs)) .command("ls", "Lists the apps associated with your account", (yargs: yargs.Argv) => appList("ls", yargs)) .command("transfer", "Transfer the ownership of an app to another account", (yargs: yargs.Argv) => { + isValidCommand = true; yargs .usage(USAGE_PREFIX + " app transfer ") .demand(/*count*/ 2, /*max*/ 2) // Require exactly two non-option arguments