Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Adam <dev@robert-adam.de>2020-09-06 14:49:37 +0300
committerRobert Adam <dev@robert-adam.de>2020-09-06 14:49:37 +0300
commitfa2a42c40f37e93d6c49c22a6ad6a7d8a26367cb (patch)
tree895d8ad78c6bf5f204e22540a4c3a6d3b3c041e7 /scripts
parent401fd0b6e40ae28043e6c64e6b0e6798caab3d18 (diff)
MAINT: Fix updatetranslations.sh error code
Due to the usage of a pipe, lupdate's error code wasn't returned to the shell as expected.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/updatetranslations.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/updatetranslations.sh b/scripts/updatetranslations.sh
index 707e0718f..8c8412519 100755
--- a/scripts/updatetranslations.sh
+++ b/scripts/updatetranslations.sh
@@ -18,6 +18,7 @@
set -u
set -e
+set -o pipefail
file="mumble_en.ts"
scriptPath="$(realpath $0)"