mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-22 16:20:19 +01:00
Make win condition in level about adding files case-insensitive
Fixes #43.
This commit is contained in:
parent
087a77527e
commit
41aba7d9cc
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ test "$NUM_FILES" -ge 3
|
||||||
|
|
||||||
# Make sure the colors match your bed's color.
|
# Make sure the colors match your bed's color.
|
||||||
NUM_FILES="$(ls | wc -l)"
|
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"
|
test "$NUM_FILES" -ge 2 && test "$YELLOW_FILES" = "$NUM_FILES"
|
||||||
|
|
||||||
[congrats]
|
[congrats]
|
||||||
|
|
Loading…
Reference in a new issue