mirror of https://github.com/k3s-io/k3s
Improve error message when CLI wrapper Exec fails
Signed-off-by: Brad Davidson <brad.davidson@rancher.com>
(cherry picked from commit 5348b5e696
)
pull/7535/head
parent
e456ffbd1e
commit
f674a22cc9
|
@ -206,7 +206,10 @@ func stageAndRun(dataDir, cmd string, args []string) error {
|
||||||
|
|
||||||
logrus.Debugf("Running %s %v", cmd, args)
|
logrus.Debugf("Running %s %v", cmd, args)
|
||||||
|
|
||||||
return syscall.Exec(cmd, args, os.Environ())
|
if err := syscall.Exec(cmd, args, os.Environ()); err != nil {
|
||||||
|
return errors.Wrapf(err, "exec %s failed", cmd)
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// getAssetAndDir returns the name of the bindata asset, along with a directory path
|
// getAssetAndDir returns the name of the bindata asset, along with a directory path
|
||||||
|
|
Loading…
Reference in New Issue