add newline to cmd failure string

This commit is contained in:
Jeff Hodges 2015-08-04 15:48:48 -07:00
parent 0957227ac3
commit 1af27c8e9e
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ func (as *AppShell) VersionString() string {
func FailOnError(err error, msg string) {
if err != nil {
// AUDIT[ Error Conditions ] 9cc4d537-8534-4970-8665-4b382abe82f3
fmt.Fprintf(os.Stderr, "%s: %s", msg, err)
fmt.Fprintf(os.Stderr, "%s: %s\n", msg, err)
os.Exit(1)
}
}