From 43a834e766a03bb43170dbd30934ee21b27d8bba Mon Sep 17 00:00:00 2001 From: Marc Wickenden Date: Mon, 30 Oct 2023 17:28:53 +0000 Subject: [PATCH] Remove new line before output --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 6a2e137..f586e9f 100644 --- a/main.go +++ b/main.go @@ -47,5 +47,5 @@ func main() { } profile := metacredsaws.GenerateProfile("pentest", *region, creds) - fmt.Printf("\n%v\n", profile) + fmt.Printf("%v\n", profile) }