File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1+ ## 3.9.10 2023-08-23 <dave at tiredofit dot ca >
2+
3+ ### Changed
4+ - Stop trying to move a non existent checksum file when ENABLE_CHECKSUM=FALSE
5+
6+
17## 3.9.9 2023-08-21 <dave at tiredofit dot ca >
28
39 ### Changed
Original file line number Diff line number Diff line change @@ -707,7 +707,7 @@ move_dbbackup() {
707707 "file" | "filesystem" )
708708 print_debug "Moving backup to filesystem"
709709 mkdir -p "${DB_DUMP_TARGET}"
710- mv "${TEMP_LOCATION}"/*."${checksum_extension}" "${DB_DUMP_TARGET}"/
710+ if var_true "${ENABLE_CHECKSUM}" ; then mv "${TEMP_LOCATION}"/*."${checksum_extension}" "${DB_DUMP_TARGET}"/ ; fi
711711 mv "${TEMP_LOCATION}"/"${target}" "${DB_DUMP_TARGET}"/"${target}"
712712 move_exit_code=$?
713713 if var_true "${CREATE_LATEST_SYMLINK}" ; then
You can’t perform that action at this time.
0 commit comments