From fe4393b357588a31ff71e439b0e16f24cd810af6 Mon Sep 17 00:00:00 2001 From: "max.mehl" Date: Thu, 3 Oct 2019 13:42:00 +0200 Subject: [PATCH] fix exit code --- tools/check-translation-status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/check-translation-status.sh b/tools/check-translation-status.sh index 3c7a8e9f21..7cc79c4e63 100755 --- a/tools/check-translation-status.sh +++ b/tools/check-translation-status.sh @@ -68,7 +68,7 @@ BASE=$(echo "${FILE}" | sed -E "s/\.[a-z][a-z]\.${EXT}//") EN="${BASE}".en."${EXT}" if [ ! -e "${EN}" ]; then out "English file does not exist. Aborting. (${EN})" - exit 2 + exit 0 fi endate=$(git log --pretty="%cd" --date=raw -1 "${EN}"|cut -d' ' -f1)