From: Ant Zucaro Date: Sun, 20 Dec 2020 14:02:59 +0000 (-0500) Subject: Check if tos text has more than one line. Use a suffix. X-Git-Tag: xonotic-v0.8.5~76^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=eba3acbc42efdde1759059aa77e9164aef6a4b32;p=xonotic%2Fxonotic.git Check if tos text has more than one line. Use a suffix. --- diff --git a/misc/infrastructure/refresh-tos.sh b/misc/infrastructure/refresh-tos.sh index 32ec10c2..8e3d7677 100755 --- a/misc/infrastructure/refresh-tos.sh +++ b/misc/infrastructure/refresh-tos.sh @@ -8,5 +8,12 @@ set -e export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games" cd /var/www/update.xonotic.org/HTML -rm -f tos.txt -wget -qO tos.txt "https://gitlab.com/xonotic/xonotic/-/raw/master/misc/infrastructure/tos.txt" +wget -qO tos.txt.new "https://gitlab.com/xonotic/xonotic/-/raw/master/misc/infrastructure/tos.txt" + +if [ `wc -l tos.txt.new | awk '{print $1}'` -ge "2" ]; then + echo "tos.txt update succeeded." + mv tos.txt.new tos.txt +else + echo "tos.txt updating failed. Please debug." +fi +