We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6962ac7 commit c97233eCopy full SHA for c97233e
1 file changed
cli/exec.go
@@ -58,7 +58,7 @@ func ExecCmd(args []string) error {
58
}
59
60
command := cmd.FindCommand(args[0])
61
- if command != nil {
+ if command != nil && !(args[0] == "sync" && len(args) > 1) {
62
return command.Handle(cmd.NewRequest(command, cfg, args[1:]))
63
64
0 commit comments