Display correct return code
This commit is contained in:
parent
605408d619
commit
141f9bd535
2 changed files with 11 additions and 2 deletions
|
|
@ -14,3 +14,10 @@ if [ "$ret" -ne 0 ]; then
|
|||
echo "$ret"
|
||||
fi
|
||||
|
||||
# if is true, ls is fales
|
||||
if [ "foo" = "foo" ]; then
|
||||
ls /surely-not-existent$$ 2>/dev/null
|
||||
fi
|
||||
|
||||
# but that's still the return of ls and not of fi
|
||||
echo $?
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue