2015-04-10 13:40:02 +00:00
|
|
|
#!/bin/sh
|
2015-04-09 22:53:46 +00:00
|
|
|
#
|
|
|
|
# xlint.sh
|
|
|
|
|
2016-03-22 17:08:39 +00:00
|
|
|
[ "$XLINT" ] || exit 0
|
2015-07-14 08:47:06 +00:00
|
|
|
|
2019-03-06 01:47:54 +00:00
|
|
|
awk '{ print "srcpkgs/" $0 "/template" }' /tmp/templates | while read -r t; do
|
|
|
|
/bin/echo -e "\x1b[32mLinting $t...\x1b[0m"
|
|
|
|
xlint "$t"
|
|
|
|
done
|