add rule to check that '{T}' is followed by 'Tap another'

master
melvinzhang 2016-03-01 13:49:01 +08:00
parent 65d2864864
commit 8fbb86a6e4
1 changed files with 5 additions and 1 deletions

View File

@ -499,7 +499,8 @@ checks: \
check_image \
check_decks \
check_mana_or_combat \
check_color_or_cost
check_color_or_cost \
check_tap_tap
remove_extra_missing:
git rm `join <(ls -1 release/Magarena/scripts | sort) <(ls -1 release/Magarena/scripts_missing | sort) | sed 's/^/release\/Magarena\/scripts_missing\//'`
@ -602,6 +603,9 @@ check_color_or_cost:
<(grep "^\(cost=\|color=\|type.*Land\)" -r release/Magarena/scripts/*.txt -l) \
<(ls release/Magarena/scripts/*.txt | sort)
check_tap_tap:
grep "{T}, Tap" -ir release/Magarena/scripts | grep -v oracle | grep -iv "{T}, Tap another" | ${NO_OUTPUT}
crash.txt: $(wildcard *.log)
for i in `grep "^Excep" -l $^`; do \
tail -n +`grep -n "random seed" $$i | tail -1 | cut -d':' -f1` $$i; \