From f33a0007e439f212c2c7708a1b50513a059fca7b Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Wed, 6 Mar 2024 18:57:35 -0500 Subject: [PATCH] fix --- cmd/sst/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/sst/main.go b/cmd/sst/main.go index 9133ee3f6..b5a5e1e55 100644 --- a/cmd/sst/main.go +++ b/cmd/sst/main.go @@ -163,7 +163,7 @@ func run() error { } required += 1 } - if cli.Bool("help") || active.Run == nil || len(cli.arguments) != required { + if cli.Bool("help") || active.Run == nil || len(cli.arguments) < required { return cli.PrintHelp() } else { return active.Run(cli)