diff options
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/common.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cmd/podman/common.go b/cmd/podman/common.go index 43a0fe061..c3b20b7f0 100644 --- a/cmd/podman/common.go +++ b/cmd/podman/common.go @@ -3,6 +3,7 @@ package main import ( "context" "fmt" + "os" "reflect" "regexp" "strings" @@ -52,7 +53,8 @@ func usageErrorHandler(context *cli.Context, err error, _ bool) error { } func commandNotFoundHandler(context *cli.Context, command string) { - fmt.Fprintf(context.App.Writer, "Command %q not found.\nSee `%s --help`.\n", command, context.App.Name) + fmt.Fprintf(os.Stderr, "Command %q not found.\nSee `%s --help`.\n", command, context.App.Name) + os.Exit(1) } // validateFlags searches for StringFlags or StringSlice flags that never had |