From 4ceec2cbf7e1c9bb348164597135c6c31984c3cb Mon Sep 17 00:00:00 2001 From: Zertrin Date: Wed, 2 Jan 2013 11:43:07 +0100 Subject: [PATCH] Fix issue #30 "-s (collection-status) option not writing anything to log file" --- duplicity-backup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/duplicity-backup.sh b/duplicity-backup.sh index ebd7f5d..7074911 100755 --- a/duplicity-backup.sh +++ b/duplicity-backup.sh @@ -590,7 +590,7 @@ case "$COMMAND" in ${DUPLICITY} ${OPTION} ${VERBOSITY} ${STATIC_OPTIONS} \ $ENCRYPT \ - ${DEST} + ${DEST} | tee -a ${LOGFILE} echo -e "-------- END --------\n" >> ${LOGFILE} ;; @@ -598,7 +598,7 @@ case "$COMMAND" in OPTION="collection-status" ${DUPLICITY} ${OPTION} ${VERBOSITY} ${STATIC_OPTIONS} \ $ENCRYPT \ - ${DEST} + ${DEST} | tee -a ${LOGFILE} echo -e "-------- END --------\n" >> ${LOGFILE} ;;