Update run

Fix "unary operator expected" that appears in the first couple lines of the log
This commit is contained in:
Skylar Sadlier
2018-11-18 16:08:07 -07:00
committed by GitHub
parent af5c6198ce
commit 96f3120e35

View File

@@ -2,7 +2,7 @@
date >/dev/null date >/dev/null
if [ $1 != "NOW" ]; then if [ "$1" != "NOW" ]; then
sleep 10 sleep 10
fi fi
@@ -37,7 +37,7 @@ MD5=${MD5:-TRUE}
SPLIT_DB=${SPLIT_DB:-FALSE} SPLIT_DB=${SPLIT_DB:-FALSE}
TMPDIR=/tmp/backups TMPDIR=/tmp/backups
if [ $1 = "NOW" ]; then if [ "$1" = "NOW" ]; then
DB_DUMP_BEGIN=+0 DB_DUMP_BEGIN=+0
MANUAL=TRUE MANUAL=TRUE
fi fi
@@ -298,4 +298,4 @@ echo '** [db-backup] Initialized at at '$(date)
fi fi
done done
fi fi