Fix missing newline in version check

main
Elie 2021-01-05 11:11:44 +01:00
parent 3c79ce7f6f
commit e3e49ccae3
No known key found for this signature in database
GPG Key ID: 399AF69092C727B6
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ func main() {
newVersion := <-latestVersionChan newVersion := <-latestVersionChan
if newVersion != "" { if newVersion != "" {
fmt.Println("\n\nYour version of driftctl is outdated, please upgrade !") fmt.Println("\n\nYour version of driftctl is outdated, please upgrade !")
fmt.Printf("Current: %s; Latest: %s", version.Current(), newVersion) fmt.Printf("Current: %s; Latest: %s\n", version.Current(), newVersion)
} }
} }
} }