exit with correct exit code on plugin failure

pull/6/head
juanvallejo 2017-10-17 17:28:29 -04:00
parent dfdfb8932f
commit 96d3f4552f
No known key found for this signature in database
GPG Key ID: 7D2C958002D6448D
1 changed files with 12 additions and 0 deletions

View File

@ -19,6 +19,9 @@ package cmd
import (
"fmt"
"io"
"os"
"os/exec"
"syscall"
"github.com/golang/glog"
"github.com/spf13/cobra"
@ -109,6 +112,15 @@ func NewCmdForPlugin(f cmdutil.Factory, plugin *plugins.Plugin, runner plugins.P
}
if err := runner.Run(plugin, runningContext); err != nil {
if exiterr, ok := err.(*exec.ExitError); ok {
// check for (and exit with) the correct exit code
// from a failed plugin command execution
if status, ok := exiterr.Sys().(syscall.WaitStatus); ok {
fmt.Fprintf(errout, "error: %v\n", err)
os.Exit(status.ExitStatus())
}
}
cmdutil.CheckErr(err)
}
},