Skip to content
Snippets Groups Projects
Commit 38909c59 authored by Eric Lammerts's avatar Eric Lammerts Committed by Alexandre Julliard
Browse files

Preserve wine return status.

parent c60bc0c9
No related branches found
No related tags found
No related merge requests found
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment