Release 4.0.24 - See CHANGELOG.md

This commit is contained in:
dave@tiredofit.ca
2023-11-28 15:06:50 -08:00
parent cccc088b35
commit be619fb707
2 changed files with 7 additions and 1 deletions

View File

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

View File

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