]> arthur.barton.de Git - backup-script.git/commitdiff
Use an exclamation mark for "system skipped" messages on errors
authorAlexander Barton <alex@barton.de>
Tue, 24 Sep 2013 09:00:02 +0000 (11:00 +0200)
committerAlexander Barton <alex@barton.de>
Tue, 24 Sep 2013 09:00:02 +0000 (11:00 +0200)
bin/backup-script

index 5f6cb1aaaa7bbd1215c26785e1d8203e5acf63ee..a07b7b83a3d7022306dcb9065832853dc291ca5f 100755 (executable)
@@ -156,11 +156,11 @@ for f in $sys; do
 
        # Check target directory
        if [ -z "$target" ]; then
-               MessageLog "No target directory specified for \"$system\"!? Skipped."
+               MessageLog "No target directory specified for \"$system\"!? Skipped!"
                echo; continue
        fi
        if [ ! -d "$target" ]; then
-               MessageLog "Target \"$target\" is not a directory!? \"$system\" skipped."
+               MessageLog "Target \"$target\" is not a directory!? \"$system\" skipped!"
                echo; continue
        fi