3 lines
147 B
Bash
Executable file
3 lines
147 B
Bash
Executable file
#!/bin/sh
|
|
# Set exec flag on all files that should be executable
|
|
find -maxdepth 4 -name "*.sh" -o -path '*/githooks/*' "$@" -exec chmod -v +x {} +
|