Unverified Commit ccaa08a4 authored by Samruddhi Khandale's avatar Samruddhi Khandale Committed by GitHub

fix chmod-bug (#4)

parent 01eb5874
...@@ -48,7 +48,8 @@ while IFS= read -r feature_line; do ...@@ -48,7 +48,8 @@ while IFS= read -r feature_line; do
echo "(*) Skipping. Script already run with same arguments." echo "(*) Skipping. Script already run with same arguments."
else else
# Execute script and create a marker with the script args # Execute script and create a marker with the script args
chmod +x ${script_command} script_name="$(echo $script_command | cut -d' ' -f1)"
chmod +x ${script_name}
./${script_command} ./${script_command}
echo "${script_command}" > "${feature_marker}" echo "${script_command}" > "${feature_marker}"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment