Fix issue #30 "-s (collection-status) option not writing anything to log file"
This commit is contained in:
parent
dfb2d1df59
commit
4ceec2cbf7
1 changed files with 2 additions and 2 deletions
|
|
@ -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}
|
||||
;;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue