bring back missing "check_is_executable.sh" precommit

This commit is contained in:
damien cavagnini
2025-08-01 11:37:36 +02:00
parent a392d13cb0
commit ffab7bcb3e
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