init
This commit is contained in:
commit
3bc0ded5a0
7 changed files with 102 additions and 0 deletions
8
fix-repo.sh
Executable file
8
fix-repo.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
for f in $(find . -iname '*.sh' -type 'f'); do
|
||||
if ! [ -x $f ]; then
|
||||
echo "fixing $f..."
|
||||
chmod +x $f
|
||||
fi
|
||||
done
|
Loading…
Add table
Add a link
Reference in a new issue