Propagate exit code for nsfakeroot command

This commit is contained in:
Elara 2023-10-24 13:03:22 -07:00
parent bb05559c1f
commit d34dcaca37
1 changed files with 4 additions and 1 deletions

View File

@ -5,6 +5,7 @@ import (
"fmt"
"log"
"os"
"os/exec"
"lure.sh/fakeroot"
"lure.sh/fakeroot/loginshell"
@ -46,7 +47,9 @@ func main() {
c.Stderr = os.Stderr
err = c.Run()
if err != nil {
if err, ok := err.(*exec.ExitError); ok {
os.Exit(err.ExitCode())
} else if err != nil {
log.Fatalln(err)
}
}