Merge pull request #154 from Stratus3D/dont-change-permissions

Don't change the permissions on files in a plugin's bin directory.
This commit is contained in:
Trevor Brown 2017-02-13 09:00:16 -07:00 committed by GitHub
commit 2ec9e98601

View File

@ -15,9 +15,7 @@ plugin_add_command() {
exit 1
else
git clone $source_url $plugin_path
if [ $? -eq 0 ]; then
chmod +x $plugin_path/bin/*
else
if [ ! $? -eq 0 ]; then
exit 1
fi
fi