Use set -e in the body of the script.

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.
This commit is contained in:
Miguel A. Colón Vélez 2015-07-27 14:13:03 -04:00
parent 83a4b37bcf
commit 6f681743ca
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
# PCSX2 - PS2 Emulator for PCs
# Copyright (C) 2002-2011 PCSX2 Dev Team
@ -23,6 +23,8 @@
# easiest solution it to ship library used during the build.
# 3/ Set __GL_THREADED_OPTIMIZATIONS variable for Nvidia Drivers (major speed boost)
set -e
current_script=$0
me=PCSX2-linux.sh

View File

@ -1,4 +1,4 @@
#!/bin/sh -e
#!/bin/sh
# PCSX2 - PS2 Emulator for PCs
# Copyright (C) 2002-2014 PCSX2 Dev Team
@ -16,6 +16,8 @@
# This script call xgettext utility to generate some nice pot (translation template) files
set -e
######################################################################
# Script configuration
######################################################################