mirror of https://github.com/PCSX2/pcsx2.git
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:
parent
83a4b37bcf
commit
6f681743ca
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
######################################################################
|
||||
|
|
Loading…
Reference in New Issue