Skip to content

Commit

Permalink
fix: Missing nextline on printf operation
Browse files Browse the repository at this point in the history
  • Loading branch information
caffeine-addictt committed Apr 8, 2024
1 parent 56fbd87 commit e04f83d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/get.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ var getCommand = &cobra.Command{
}

// Get File
fmt.Printf("Downloading %s to %s", url, downloadLocation)
fmt.Printf("Downloading %s to %s\n", url, downloadLocation)
Info("Getting url: " + url)

request, err := http.NewRequest(http.MethodGet, url, http.NoBody)
Expand Down

0 comments on commit e04f83d

Please sign in to comment.