chmod scripts
This commit is contained in:
parent
e2f47a9dd2
commit
315256694e
@ -11,6 +11,7 @@ All tasks should be launched through `Makefile`. Tasks can be configured in `.co
|
||||
cd some_project
|
||||
git clone http://github.com/Timerix22/cbuild.git
|
||||
cp cbuild/default.Makefile Makefile
|
||||
bash cbuild/chmod_scripts.sh
|
||||
make
|
||||
```
|
||||
|
||||
|
||||
7
chmod_scripts.sh
Normal file
7
chmod_scripts.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
SCRIPTS="$(find ./ -name '*.sh')"
|
||||
for F in $SCRIPTS
|
||||
do
|
||||
echo $F
|
||||
chmod +x $F
|
||||
done
|
||||
Loading…
Reference in New Issue
Block a user