mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-10 09:03:50 +02:00
10 lines
190 B
Bash
Executable file
10 lines
190 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# xlint.sh
|
|
|
|
[ "$XLINT" ] || exit 0
|
|
|
|
awk '{ print "srcpkgs/" $0 "/template" }' /tmp/templates | while read -r t; do
|
|
/bin/echo -e "\x1b[32mLinting $t...\x1b[0m"
|
|
xlint "$t"
|
|
done
|