Fix missing newline in version check
parent
3c79ce7f6f
commit
e3e49ccae3
2
main.go
2
main.go
|
@ -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)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue