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
+
1
7
## 3.9.9 2023-08-21 <dave at tiredofit dot ca >
2
8
3
9
### Changed
Original file line number Diff line number Diff line change @@ -707,7 +707,7 @@ move_dbbackup() {
707
707
"file" | "filesystem" )
708
708
print_debug "Moving backup to filesystem"
709
709
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
711
711
mv "${TEMP_LOCATION}"/"${target}" "${DB_DUMP_TARGET}"/"${target}"
712
712
move_exit_code=$?
713
713
if var_true "${CREATE_LATEST_SYMLINK}" ; then
You can’t perform that action at this time.
0 commit comments