Skip to content

Commit

Permalink
Fix shellcheck warnings :P
Browse files Browse the repository at this point in the history
  • Loading branch information
koalaman committed Apr 15, 2017
1 parent fd79e80 commit 3a38c50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nextnumber
Expand Up @@ -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

0 comments on commit 3a38c50

Please sign in to comment.