diff --git a/local/bin/dn b/local/bin/dn index 3220936..ad8b63a 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" -eq "12" && "$day" -lt "25" ]]; then + if [[ "$month" == "12" && "$day" -lt "25" ]]; then echo "- [ ] Advent of Code" fi }