fix: all shellscripts should be +x
This commit is contained in:
parent
1da2f0100c
commit
eb1096b275
18 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
for s in $(find tools/ -type f -regex ".*\.\(sh\|py\)"); do
|
||||
for s in $(find . -type f -regex ".*\.\(sh\|py\)"); do
|
||||
if ! [ -x $s ]; then
|
||||
echo "$s is not executable"
|
||||
exit 1
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
for s in $(find tools/ -type f -regex ".*\.\(sh\|py\)"); do
|
||||
for s in $(find . -type f -regex ".*\.\(sh\|py\)"); do
|
||||
[ -x $s ] && continue
|
||||
echo "fixing permissions for $s..."
|
||||
chmod +x $s
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue