Skip to content

Commit

Permalink
fix string escaping
Browse files Browse the repository at this point in the history
  • Loading branch information
felixb committed Oct 23, 2018
1 parent e275ab1 commit f380f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion swamp.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func main() {
if err := execCommand(config); err != nil {
die(fmt.Sprintf(`Error running command ""%s" with AWS profile "%s"`, config.exec, config.targetProfile), err)
} else {
fmt.Printf(`Executed "%s" sucessfully\n`, config.exec)
fmt.Printf("Executed \"%s\" sucessfully\n", config.exec)
}
}

Expand Down

0 comments on commit f380f12

Please sign in to comment.