Merge pull request #43 from containscafeine/add-newline

Newline at the end of output
This commit is contained in:
Shubham
2018-02-06 18:33:34 +05:30
committed by GitHub

View File

@@ -56,7 +56,7 @@ var getCmd = &cobra.Command{
if isQuiet {
fmt.Print(app)
} else {
fmt.Printf("The current application is: %v", app)
fmt.Printf("The current application is: %v\n", app)
}
},
}