Only use single * and ignore mach output

This commit is contained in:
Martin Feckie 2015-11-21 09:58:22 +11:00
parent 9c5e9dc96c
commit a024c1c296

View file

@ -1,5 +1,5 @@
#!/bin/bash
./mach test-wpt --manifest-update SKIP_TESTS
diff=$(git diff --exit-code -- tests/**/MANIFEST.json)
./mach test-wpt --manifest-update SKIP_TESTS > /dev/null
diff=$(git diff -- tests/*/MANIFEST.json)
echo "$diff"
[[ ! $diff ]]