From ca0b2b69d0ffbb0ea4b4afdfae80c154ee187a7b Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Wed, 31 Jul 2019 08:43:23 +0200 Subject: [PATCH] shellcheck: negative exit and -z vs -n --- clibs | 2 +- process/compress.sh | 4 ++-- process/send-bz2-report | 2 +- process/send-zip-report | 4 ++-- process/sendreport.sh | 6 +++--- process/sendreports.sh | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/clibs b/clibs index 696505016..1854780fe 160000 --- a/clibs +++ b/clibs @@ -1 +1 @@ -Subproject commit 6965050165efdae89305a13bff06283229f143f4 +Subproject commit 1854780fe3073e491775836c22f709668b1fff62 diff --git a/process/compress.sh b/process/compress.sh index 4c0147978..21ac828ef 100755 --- a/process/compress.sh +++ b/process/compress.sh @@ -2,7 +2,7 @@ if [ -z "$ERESSEA" ]; then echo "You need to define the \$ERESSEA environment variable to run $0" - exit -2 + exit 2 fi GAME="$ERESSEA/game-$1" @@ -16,7 +16,7 @@ fi if [ ! -d "$GAME/reports" ]; then echo "cannot find reports directory in $GAME" - exit -1 + exit 1 fi cd "$GAME/reports" || exit diff --git a/process/send-bz2-report b/process/send-bz2-report index 51a8113bf..3eabeca30 100755 --- a/process/send-bz2-report +++ b/process/send-bz2-report @@ -5,7 +5,7 @@ if [ -z "$ERESSEA" ]; then fi if [ ! -f reports.txt ]; then echo "need to run $0 from the report direcory" - exit -2 + exit 2 fi TEMPLATE=report-mail.txt diff --git a/process/send-zip-report b/process/send-zip-report index a6bd85246..1e3da1933 100755 --- a/process/send-zip-report +++ b/process/send-zip-report @@ -6,7 +6,7 @@ if [ -z "$ERESSEA" ]; then fi if [ ! -f reports.txt ]; then echo "need to run $0 from the report direcory" - exit -2 + exit 2 fi PWD=$(pwd) @@ -33,7 +33,7 @@ fi if [ ! -e "$TEMPLATE" ]; then echo "no such email template: $TEMPLATE" - exit -3 + exit 3 fi while [ -e /tmp/.stopped ] ; do diff --git a/process/sendreport.sh b/process/sendreport.sh index d38b2a14f..c19c664a7 100755 --- a/process/sendreport.sh +++ b/process/sendreport.sh @@ -3,14 +3,14 @@ if [ -z "$ERESSEA" ]; then echo "You have to define the \$ERESSEA environment variable to run $0" - exit -2 + exit 2 fi function abort() { if [ $# -gt 0 ]; then echo "$@" fi - exit -1 + exit 1 } GAME=$1 @@ -47,7 +47,7 @@ fi bash "${FACTION}.sh" "$EMAIL" || reply "Unbekannte Partei $FACTION" OWNER=$("$BIN/getfaction.py" "$PWFILE" "$FACTION") -if [ ! -z "$OWNER" ]; then +if [ -n "$OWNER" ]; then echo "Der Report Deiner Partei wurde an ${EMAIL} gesandt." \ | mutt -s "Reportnachforderung Partei ${FACTION}" "$OWNER" fi diff --git a/process/sendreports.sh b/process/sendreports.sh index d1adba943..c56233367 100755 --- a/process/sendreports.sh +++ b/process/sendreports.sh @@ -5,10 +5,10 @@ if [ -z "$ERESSEA" ]; then echo "You have to define the \$ERESSEA environment variable to run $0" - exit -2 + exit 2 fi -if [ ! -z "$1" ]; then +if [ -n "$1" ]; then GAME="$ERESSEA/game-$1" else GAME=$ERESSEA