summaryrefslogtreecommitdiff
path: root/build-aux/lint-generic
diff options
context:
space:
mode:
Diffstat (limited to 'build-aux/lint-generic')
-rwxr-xr-xbuild-aux/lint-generic2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/lint-generic b/build-aux/lint-generic
index 290988c..70e814a 100755
--- a/build-aux/lint-generic
+++ b/build-aux/lint-generic
@@ -25,7 +25,7 @@ for filename in "$@"; do
if [ -x "$filename" ] && [ -z "$shebang" ]; then
err "$filename" 'is executable but does not have a shebang'
elif [ -n "$shebang" ] && ! [ -x "$filename" ]; then
- err "$filename" 'has a shebang but is executable'
+ err "$filename" 'has a shebang but is not executable'
fi
if ! grep -E -q 'Copyright \(C\) 202[4-9]((-|, )202[5-9])* Luke T. Shumaker' "$filename"; then