mirror of
https://github.com/Hilbis/Hilbish
synced 2025-04-03 12:13:25 +00:00
fix: finish command properly when sh error occurs
This commit is contained in:
parent
639bd09d0e
commit
ef6bf24cda
1
exec.go
1
exec.go
@ -72,6 +72,7 @@ func runInput(input, origInput string) {
|
|||||||
if code, ok := interp.IsExitStatus(err); ok {
|
if code, ok := interp.IsExitStatus(err); ok {
|
||||||
cmdFinish(code, cmdString, origInput)
|
cmdFinish(code, cmdString, origInput)
|
||||||
} else {
|
} else {
|
||||||
|
cmdFinish(126, cmdString, origInput)
|
||||||
fmt.Fprintln(os.Stderr, err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user