From: Elijah Saxon Date: Fri, 18 Mar 2005 20:22:11 +0000 (+0000) Subject: unless there is an actual error reported, we now assume success. X-Git-Tag: backupninja-0.4.4~1 X-Git-Url: https://git.stderr.nl/gitweb?p=matthijs%2Fupstream%2Fbackupninja.git;a=commitdiff_plain;h=608d4d0b0ed98a43c73a090e38fa5d42dd882174 unless there is an actual error reported, we now assume success. --- diff --git a/backupninja b/backupninja index 3cd3cae..b7d4a14 100755 --- a/backupninja +++ b/backupninja @@ -317,10 +317,12 @@ function process_action() { elif [ $_warnings != 0 ]; then msg "*warning* -- $file" errormsg="$errormsg\n== warnings from $file ==\n\n$ret\n" - elif [ $retcode == 0 ]; then - msg "success -- $file" else - msg "unknown -- $file" + msg "success -- $file" +# elif [ $retcode == 0 ]; then +# msg "success -- $file" +# else +# msg "unknown -- $file" fi let "fatals += _fatals"