Skip to content

Commit

Permalink
Uiua: fix justfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Defelo committed Dec 29, 2024
1 parent 3f3e03b commit e545354
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Uiua/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ test-year year:
@set -e; for day in $(ls {{year}}); do just test {{year}} $(basename $day .ua); done

test-all:
@set -e; for year in *; do [[ -d $year ]] || continue; just test-year $year; done
@set -e; for year in *; do [[ -d $year ]] && [[ "$year" =~ ^[0-9]+$ ]] || continue; just test-year $year; done

0 comments on commit e545354

Please sign in to comment.