bring back missing "check_is_executable.sh" precommit

This commit is contained in:
damien cavagnini
2025-08-01 11:37:36 +02:00
parent 2cab6eda26
commit 0cf11ca4cf
2 changed files with 14 additions and 0 deletions

7
hooks/check_is_executable.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
for script in "$@"; do
chmod +x "$script"
done
exit 0