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
echo "(*) Skipping. Script already run with same arguments."
else
# 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}
echo "${script_command}" > "${feature_marker}"
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