This commit is contained in:
Strix 2024-05-23 20:21:18 +02:00
commit 3bc0ded5a0
7 changed files with 102 additions and 0 deletions

8
fix-repo.sh Executable file
View 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