feat: fix permissions script

This commit is contained in:
Strix 2023-10-22 17:45:13 +02:00
parent a171a058f9
commit 6479834c2e
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774

View 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