change upper bound

This commit is contained in:
Antoine 2024-12-05 17:08:37 +01:00
parent 4bd5ff3a0e
commit 19df09ebc8

View file

@ -19,7 +19,7 @@ find_unticked_checkboxes() {
# Function to add aoc checkbox if it's December before the 24th # Function to add aoc checkbox if it's December before the 24th
add_aoc_checkbox() { add_aoc_checkbox() {
if [[ "$month" == "12" && "$day" -lt "25" ]]; then if [[ "$month" == "12" && "$day" -lt "26" ]]; then
echo "- [ ] Advent of Code" echo "- [ ] Advent of Code"
fi fi
} }