Skip to content

Commit

Permalink
fix: panic on Too many vars
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinZonda committed May 8, 2023
1 parent ab17a43 commit d2a0894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/oper/run/simpleRunHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func SimpleRunHandler(args []string) {
}
varMap[k] = input
}
panic("Too many vars")
//panic("Too many vars")
}
if len(file.Vars) == 1 {
for k, _ := range file.Vars {
Expand Down

0 comments on commit d2a0894

Please sign in to comment.