We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 688497e commit 4e5690bCopy full SHA for 4e5690b
makecrx.sh
@@ -50,6 +50,19 @@ else
50
exit 1
51
fi
52
53
+if [ -f relaxng.xml -a -x "$(which xmllint)" ] >&2
54
+then
55
+ if xmllint --noout --relaxng relaxng.xml src/chrome/content/rules/*.xml
56
+ then
57
+ echo Validation of rulesets with RELAX NG grammar completed. >&2
58
+ else
59
+ echo ERROR: Validation of rulesets with RELAX NG grammar failed. >&2
60
+ exit 1
61
+ fi
62
+else
63
+ echo Validation of rulesets with RELAX NG grammar was SKIPPED. >&2
64
+fi
65
+
66
sed -e "s/VERSION/$VERSION/g" chromium/updates-master.xml > chromium/updates.xml
67
68
[ -d pkg ] || mkdir -p pkg
0 commit comments