Skip to content

Commit

Permalink
Add newline on debug println
Browse files Browse the repository at this point in the history
  • Loading branch information
Elia Bracci committed Dec 20, 2022
1 parent dae3757 commit 5f8a1ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 2 additions & 0 deletions test-tgswitch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 5f8a1ad

Please sign in to comment.