diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-09 20:22:09 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2025-04-10 16:30:45 -0600 |
commit | 661dfbc4535894e5ee1464144977cb42fdf106cd (patch) | |
tree | a66f4869f49ad65f6e841318e3960c1af7b4eff2 | |
parent | 9f379b2920f0aa3acf899215b6050f6e8728ab48 (diff) |
lint-generic: Fix a typo in the shebang message
-rwxr-xr-x | build-aux/lint-generic | 2 |
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 |