From: rohieb Date: Mon, 8 Mar 2010 03:21:10 +0000 (+0100) Subject: update scripts: safely exit 0 on exit X-Git-Tag: REL_10.03.08~2 X-Git-Url: https://git.rohieb.name/iserv-mod-error-reporter.git/commitdiff_plain/0c5bb7077fe9691e785bd5c160bacbe533ffa5a7 update scripts: safely exit 0 on exit --- diff --git a/maint/update-config-from-iserv1.sh b/maint/update-config-from-iserv1.sh index 467e17a..b31bc3f 100755 --- a/maint/update-config-from-iserv1.sh +++ b/maint/update-config-from-iserv1.sh @@ -19,3 +19,6 @@ done; mv $OLDCFG $OLDCFG.converted [ -e $OLDCFG ] && echo "Done. Please remove the old config file ($OLDCFG) by hand!" && exit 255; + +exit 0; + diff --git a/maint/update-config.sh b/maint/update-config.sh index 24d1a7e..f6c39d1 100755 --- a/maint/update-config.sh +++ b/maint/update-config.sh @@ -23,3 +23,5 @@ fi; mv $OLDCFG $OLDCFG.converted [ -e "$OLDCFG" ] && echo "Done. Please remove the old config file ($OLDCFG) by hand!" && exit 255; +exit 0; +