Preserve wine return status.
This commit is contained in:
parent
c60bc0c9a5
commit
38909c5900
|
@ -530,3 +530,9 @@ fi
|
|||
|
||||
clean_up_info_message
|
||||
|
||||
# killed by signal?
|
||||
if [ $wine_return -ge 128 ]; then
|
||||
# try to kill myself with the same signal
|
||||
kill -$[wine_return - 128] $$
|
||||
# if we get here the kill didn't work
|
||||
exit 1
|
||||
|
|
Loading…
Reference in New Issue