From 8d05edf3b15afd933092dc1a4b0f20784cb1e71e Mon Sep 17 00:00:00 2001 From: lesion Date: Mon, 9 May 2022 20:46:09 +0200 Subject: [PATCH] disable accounts cli command in this release --- server/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cli.js b/server/cli.js index e12ae8d9..c7e9dfef 100755 --- a/server/cli.js +++ b/server/cli.js @@ -29,7 +29,7 @@ require('yargs') return absolute_config_path }}) .command(['start', 'run', '$0'], 'Start gancio', {}, start) - .command(['accounts'], 'Manage accounts', accountsCLI) + // .command(['accounts'], 'Manage accounts', accountsCLI) .help('h') .alias('h', 'help') .epilog('Made with ❤ by underscore hacklab - https://gancio.org')