Skip to content

Commit

Permalink
Release 4.0.24 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Nov 28, 2023
1 parent cccc088 commit be619fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 4.0.24 2023-11-28 <dave at tiredofit dot ca>

### Changed
- Fix issue with cron parsing and 0 being a value getting clobbered by sort command


## 4.0.23 2023-11-28 <dave at tiredofit dot ca>

### Changed
Expand Down
2 changes: 1 addition & 1 deletion install/assets/functions/10-db-backup
Original file line number Diff line number Diff line change
Expand Up @@ -1865,7 +1865,7 @@ timer() {
fi
done

validate_all=$(echo "${validate_all}" | tr ' ' '\n' | sort -n -u | tr '\n' ' ')
validate_all=$(echo "${validate_all}" | tr ' ' '\n' | sort -g -u | tr '\n' ' ')
for entry in $validate_all; do
if [ ${entry} -ge ${3} ]; then
echo "${entry}"
Expand Down

0 comments on commit be619fb

Please sign in to comment.