From: David Goulet Date: Mon, 25 Sep 2023 14:17:30 +0000 (-0400) Subject: scripts: Always exit 0 after git commit for geoip script X-Git-Tag: tor-0.4.9.1-alpha~102 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7f3daa5bd2db91228c4627271968625b66aee0ff;p=thirdparty%2Ftor.git scripts: Always exit 0 after git commit for geoip script Signed-off-by: David Goulet --- diff --git a/scripts/maint/geoip/update_and_commit_geoip.sh b/scripts/maint/geoip/update_and_commit_geoip.sh index a83f82433e..4fbd030628 100755 --- a/scripts/maint/geoip/update_and_commit_geoip.sh +++ b/scripts/maint/geoip/update_and_commit_geoip.sh @@ -32,3 +32,5 @@ EOF git add "$CHANGESFILE" git commit -a -m "Update geoip files to match ipfire location db, $SLASH_DATE." + +exit 0