From 5f8a1ad519ea9e061c07ece4b37fc9e3340ecd73 Mon Sep 17 00:00:00 2001 From: Elia Bracci Date: Tue, 20 Dec 2022 22:10:07 +0100 Subject: [PATCH] Add newline on debug println --- lib/install.go | 2 +- test-tgswitch.sh | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/install.go b/lib/install.go index 45a3c34..c96aaba 100644 --- a/lib/install.go +++ b/lib/install.go @@ -225,7 +225,7 @@ func Install(tgversion string, usrBinPath string, mirrorURL string) string { /* proceed to download it from the hashicorp release page */ url := mirrorURL + "v" + tgversion + "/" + "terragrunt" + "_" + goos + "_" + goarch - fmt.Printf("Downloading terragrunt from %s", url) + fmt.Printf("\n Downloading terragrunt from %s", url) downloadedFile, errDownload := DownloadFromURL(installLocation, url) diff --git a/test-tgswitch.sh b/test-tgswitch.sh index dc898c1..190af60 100755 --- a/test-tgswitch.sh +++ b/test-tgswitch.sh @@ -84,4 +84,6 @@ runtestenv "env variable" "0.37.1" "v0.37.1" #runtestenv "env variable" "0.26.7" "v0.26.7" runtestarg "passing argument" "0.36.1" "v0.36.1" # M1 darwin arm64 test +runtestarg "passing argument" "0.28.0" "v0.28.0" +# M1 darwin arm64 test runtestarg "passing argument" "0.26.7" "v0.26.7" \ No newline at end of file