From 1da289185b478f4c8c9997f2ed16d127d18e0307 Mon Sep 17 00:00:00 2001 From: Isaac Date: Sat, 25 Sep 2021 18:39:14 +0100 Subject: [PATCH] fix: tag command when there is no subcommand line 42 generates an error --- src/commands/tag.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/tag.js b/src/commands/tag.js index e356e22..eb93f80 100644 --- a/src/commands/tag.js +++ b/src/commands/tag.js @@ -23,7 +23,7 @@ module.exports = class TagCommand extends Command { required: true, type: Command.option_types.STRING })), - required: false, + required: true, type: Command.option_types.SUB_COMMAND })); },