From 1119393c46054fa59df546ab0e0dd3a51a9d7311 Mon Sep 17 00:00:00 2001 From: Garrett Robinson Date: Wed, 14 Mar 2018 13:30:56 -0700 Subject: [PATCH] Add missing -v switch with default value --- scripts/commands.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/commands.js b/scripts/commands.js index c5c7e339f..75439adf9 100644 --- a/scripts/commands.js +++ b/scripts/commands.js @@ -75,6 +75,7 @@ program program .command('test ') + .option('--v [log_level]', 'set log level to [log_level]', parseInt, '0') .action(test) program