mirror of
https://github.com/libretro/pcsx2.git
synced 2025-01-19 07:52:58 +00:00
6f681743ca
The script passes -e to the shell on the #! line rather than using set -e in the body of the script. This is fine for normal operation, but if the script is run by hand with sh /path/to/script (common in debugging), -e will not be in effect. It's therefore better to use set -e in the body of the script.