Skip to content

Commit c838faa

Browse files
committed
Fixed wait usage
1 parent 58f8829 commit c838faa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wait.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func runWait(cmd *Command, args []string) {
2525
if waitHelp {
2626
cmd.PrintUsage()
2727
}
28-
if len(args) != 0 {
28+
if len(args) < 1 {
2929
cmd.PrintShortUsage()
3030
}
3131

0 commit comments

Comments
 (0)