Skip to content

Commit

Permalink
Changes assignment of runErr to var, not short declaration.
Browse files Browse the repository at this point in the history
  • Loading branch information
nkinkade committed Dec 10, 2020
1 parent 712d343 commit a3963e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/epoxy_client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func main() {

for {
// Run the config loaded from the action URL.
runErr := c.Run(*flagAction, *flagAddKargs, *flagDryrun)
runErr = c.Run(*flagAction, *flagAddKargs, *flagDryrun)
if runErr != nil {
// Define a successful result.
result = "error: " + runErr.Error()
Expand Down

0 comments on commit a3963e9

Please sign in to comment.