From f380f1231f579a1516272ad01f367ec643a904bf Mon Sep 17 00:00:00 2001 From: Felix Bechstein Date: Tue, 23 Oct 2018 07:55:16 +0200 Subject: [PATCH] fix string escaping --- swamp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swamp.go b/swamp.go index b515cbb..30f579f 100644 --- a/swamp.go +++ b/swamp.go @@ -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) } }