Do not display exit status when classic cli exit in error

This commit is contained in:
Guillaume Tardif 2020-06-05 17:08:42 +02:00
parent e84b508e80
commit 54141a9bdd
3 changed files with 8 additions and 1 deletions

View File

@ -27,7 +27,6 @@ func Exec(ctx context.Context) {
cmd.Stderr = os.Stderr
if err := cmd.Run(); err != nil {
if exiterr, ok := err.(*exec.ExitError); ok {
fmt.Fprintln(os.Stderr, exiterr.Error())
os.Exit(exiterr.ExitCode())
}
fmt.Fprintln(os.Stderr, err)

View File

@ -156,6 +156,12 @@ func (s *E2eSuite) TestLegacy() {
})
}
func (s *E2eSuite) TestLeaveLegacyErrorMessagesUnchanged() {
output, err := s.NewDockerCommand("foo").Exec()
golden.Assert(s.T(), output, "unknown-foo-command.golden")
Expect(err).NotTo(BeNil())
}
func (s *E2eSuite) TestMockBackend() {
It("creates a new test context to hardcoded example backend", func() {
s.NewDockerCommand("context", "create", "test-example", "example").ExecOrDie()

View File

@ -0,0 +1,2 @@
docker: 'foo' is not a docker command.
See 'docker --help'