remove newline from setup intro

This commit is contained in:
gmemstr 2017-12-19 09:07:06 -08:00
parent 7375d2846a
commit 793cb0e650

View file

@ -21,7 +21,7 @@ func main() {
// Check if this is the first time Pogo has been run // Check if this is the first time Pogo has been run
// with a lockfile // with a lockfile
if _, err := os.Stat(".lock"); os.IsNotExist(err) { if _, err := os.Stat(".lock"); os.IsNotExist(err) {
fmt.Println("This looks like your first time running Pogo,\ngive me a second to set myself up.") fmt.Println("This looks like your first time running Pogo, give me a second to set myself up.")
Setup() Setup()
} }