summaryrefslogtreecommitdiff
path: root/check
diff options
context:
space:
mode:
Diffstat (limited to 'check')
-rwxr-xr-xcheck8
1 files changed, 8 insertions, 0 deletions
diff --git a/check b/check
index 170ed8bf..9c4e2250 100755
--- a/check
+++ b/check
@@ -129,5 +129,13 @@ then
;;
esac
done
+
+ echo 'Checking for executable *.py files'
+ find . -type f -name '*.py' -perm +111 |
+ while read x
+ do
+ echo "ERROR: $x is executable" 1>&2
+ errors=1
+ done
fi
exit $errors