mirror of https://github.com/containers/podman.git
add newline to output in error message
Signed-off-by: Anthony Sottile <asottile@umich.edu>
This commit is contained in:
parent
2b7bc9b101
commit
7b248d9e3a
|
|
@ -33,7 +33,7 @@ func PodmanConfig() *entities.PodmanConfig {
|
||||||
|
|
||||||
func newPodmanConfig() {
|
func newPodmanConfig() {
|
||||||
if err := setXdgDirs(); err != nil {
|
if err := setXdgDirs(); err != nil {
|
||||||
fmt.Fprintf(os.Stderr, err.Error())
|
fmt.Fprintln(os.Stderr, err.Error())
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue