diff --git a/README.md b/README.md index 0ce79f6..29305ab 100644 --- a/README.md +++ b/README.md @@ -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 ``` diff --git a/chmod_scripts.sh b/chmod_scripts.sh new file mode 100644 index 0000000..9317f0d --- /dev/null +++ b/chmod_scripts.sh @@ -0,0 +1,7 @@ +#!/bin/bash +SCRIPTS="$(find ./ -name '*.sh')" +for F in $SCRIPTS +do + echo $F + chmod +x $F +done