From 19df09ebc891f16cfd0e31e38f92ceb4dfd7a67b Mon Sep 17 00:00:00 2001 From: Antoine Date: Thu, 5 Dec 2024 17:08:37 +0100 Subject: [PATCH] change upper bound --- local/bin/dn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local/bin/dn b/local/bin/dn index fbe92da..3ad2c3d 100755 --- a/local/bin/dn +++ b/local/bin/dn @@ -19,7 +19,7 @@ find_unticked_checkboxes() { # Function to add aoc checkbox if it's December before the 24th add_aoc_checkbox() { - if [[ "$month" == "12" && "$day" -lt "25" ]]; then + if [[ "$month" == "12" && "$day" -lt "26" ]]; then echo "- [ ] Advent of Code" fi }