feat: fix permissions script
This commit is contained in:
parent
a171a058f9
commit
6479834c2e
1 changed files with 7 additions and 0 deletions
7
tools/repo/fix-script-permissions.sh
Executable file
7
tools/repo/fix-script-permissions.sh
Executable file
|
@ -0,0 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
for s in $(find tools/ -type f -iname "*.sh"); do
|
||||
[ -x $s ] && continue
|
||||
echo "fixing permissions for $s..."
|
||||
chmod +x $s
|
||||
done
|
Loading…
Reference in a new issue