diff options
| author | practicalswift <[email protected]> | 2018-06-13 16:50:48 +0200 |
|---|---|---|
| committer | practicalswift <[email protected]> | 2018-06-14 15:27:52 +0200 |
| commit | 3352da8da1243c03fc83ba678d2f5d193bd5a0c2 (patch) | |
| tree | 6985354b06d98d4d77d1a0c5a6690bddcc5af83e /contrib/macdeploy | |
| parent | Merge #13393: Enable double-SHA256-for-64-byte code on 32-bit x86 (diff) | |
| download | discoin-3352da8da1243c03fc83ba678d2f5d193bd5a0c2.tar.xz discoin-3352da8da1243c03fc83ba678d2f5d193bd5a0c2.zip | |
Add "export LC_ALL=C" to all shell scripts
Diffstat (limited to 'contrib/macdeploy')
| -rwxr-xr-x | contrib/macdeploy/detached-sig-apply.sh | 1 | ||||
| -rwxr-xr-x | contrib/macdeploy/detached-sig-create.sh | 1 | ||||
| -rwxr-xr-x | contrib/macdeploy/extract-osx-sdk.sh | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/contrib/macdeploy/detached-sig-apply.sh b/contrib/macdeploy/detached-sig-apply.sh index 91674a92e..f8503e4de 100755 --- a/contrib/macdeploy/detached-sig-apply.sh +++ b/contrib/macdeploy/detached-sig-apply.sh @@ -3,6 +3,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +export LC_ALL=C set -e UNSIGNED="$1" diff --git a/contrib/macdeploy/detached-sig-create.sh b/contrib/macdeploy/detached-sig-create.sh index 3379a4599..5281ebcc4 100755 --- a/contrib/macdeploy/detached-sig-create.sh +++ b/contrib/macdeploy/detached-sig-create.sh @@ -3,6 +3,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +export LC_ALL=C set -e ROOTDIR=dist diff --git a/contrib/macdeploy/extract-osx-sdk.sh b/contrib/macdeploy/extract-osx-sdk.sh index ff9fbd58d..94122b56f 100755 --- a/contrib/macdeploy/extract-osx-sdk.sh +++ b/contrib/macdeploy/extract-osx-sdk.sh @@ -3,6 +3,7 @@ # Distributed under the MIT software license, see the accompanying # file COPYING or http://www.opensource.org/licenses/mit-license.php. +export LC_ALL=C set -e INPUTFILE="Xcode_7.3.1.dmg" |