if condition correction

This commit is contained in:
azlux 2016-10-18 00:31:24 +02:00 committed by GitHub
parent c8c0e1a392
commit aefbdb7c99
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ case "$1" in
;;
stop)
if ["$USE_RSYNC" = true]; then
if [[ "$USE_RSYNC" = true ]]; then
rsync -aXWv --delete --links $RAM_LOG $HDD_LOG
else
cp -rfup $RAM_LOG -T $HDD_LOG
@ -29,7 +29,7 @@ case "$1" in
;;
write)
if ["$USE_RSYNC" = true]; then
if [[ "$USE_RSYNC" = true ]]; then
rsync -aXWv --delete --links $RAM_LOG $HDD_LOG
else
cp -rfup $RAM_LOG -T $HDD_LOG