From 14a1dafa255c5ad355978ebaa7f82553ffa45856 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 21 Aug 2011 13:50:23 +0200 Subject: [PATCH] make check-translations.sh no longer work on non authorized systems terencehill used it and caused merge conflicts for his branch that inhibit merging it --- check-translations.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/check-translations.sh b/check-translations.sh index fb1f68f32..5555f2dea 100755 --- a/check-translations.sh +++ b/check-translations.sh @@ -1,5 +1,17 @@ #!/bin/sh +case `hostname` in + srv01|hagger|grawp) + ;; + *) + echo "Sorry, you are not supposed to use this script." + echo "This script is solely for use by the Xonotic Core Team." + echo "Unauthorized use of it can cause HIGHLY annoying merge" + echo "conflicts." + exit 1 + ;; +esac + for VM in menu csprogs; do case "$VM" in csprogs) -- 2.39.2