Make win condition in level about adding files case-insensitive

Fixes #43.
This commit is contained in:
blinry 2021-03-08 14:51:07 +01:00
parent 087a77527e
commit 41aba7d9cc

View file

@ -24,7 +24,7 @@ test "$NUM_FILES" -ge 3
# Make sure the colors match your bed's color.
NUM_FILES="$(ls | wc -l)"
YELLOW_FILES="$(grep -l yellow * | wc -l)"
YELLOW_FILES="$(grep -li yellow * | wc -l)"
test "$NUM_FILES" -ge 2 && test "$YELLOW_FILES" = "$NUM_FILES"
[congrats]