auto merge of #147 : alexcrichton/cargo/ls-files, r=wycats

Apparently older versions of git report all contents of submodules in the
ls-files command!
This commit is contained in:
bors 2014-07-08 16:37:57 +00:00
commit 3dcb3376fc

View File

@ -81,7 +81,7 @@ style:
sh tests/check-style.sh
no-exes:
find $$(git ls-files) -perm +111 -type f \
find $$(git ls-files | grep -v '^lib') -perm +111 -type f \
-not -name '*.sh' -not -name '*.rs' | grep '.*' \
&& exit 1 || exit 0