Merge pull request #578 from letsencrypt/on_error

add newline to cmd failure string
This commit is contained in:
Jacob Hoffman-Andrews 2015-08-04 16:03:06 -07:00
commit de9e01b461
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)
}
}