Fix issue #30 "-s (collection-status) option not writing anything to log file"

This commit is contained in:
Zertrin 2013-01-02 11:43:07 +01:00
parent dfb2d1df59
commit 4ceec2cbf7

View file

@ -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}
;;