Fix shellcheck warnings :P

This commit is contained in:
Vidar Holen 2017-04-15 13:24:41 -07:00
parent fd79e80e78
commit 3a38c50b8e

View file

@ -5,6 +5,6 @@ shopt -s globstar
for i in 1 2
do
last=$(grep -hv "^prop" **/*.hs | grep -Ewo "$i[0-9]{3}" | sort -n | tail -n 1)
last=$(grep -hv "^prop" ./**/*.hs | grep -Ewo "$i[0-9]{3}" | sort -n | tail -n 1)
echo "Next ${i}xxx: $((last+1))"
done