We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21f1bf4 commit 96630c7Copy full SHA for 96630c7
makecrx.sh
@@ -56,7 +56,8 @@ fi
56
57
if [ -f utils/relaxng.xml -a -x "$(which xmllint)" ] >&2
58
then
59
- if xmllint --noout --relaxng utils/relaxng.xml src/chrome/content/rules/*.xml
+ # Use find and xargs to avoid "too many args" error on Mac OS X
60
+ if find src/chrome/content/rules/ -name "*.xml" | xargs xmllint --noout --relaxng utils/relaxng.xml
61
62
echo Validation of rulesets with RELAX NG grammar completed. >&2
63
else
0 commit comments