We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81eb4dc commit e9d148fCopy full SHA for e9d148f
util/test-modified.sh
@@ -1,7 +1,7 @@
1
# This script will run make xtest on any files in the repository that have not yet been committed
2
# use before 'git commit' to ensure your commit doesn't require correction.
3
4
-export TEST_FILES=`git status --porcelain | grep ' M' | awk '{print $2}'`
+export TEST_FILES=`git status --porcelain | egrep '^( M|A )' | awk '{print $2}'`
5
6
[ "$TEST_FILES" = "" ] && echo "nothing to test"
7
[ "$TEST_FILES" != "" ] && RAKULIB=. make xtest
0 commit comments