Skip to content
Snippets Groups Projects
Commit d3b5a1fd authored by nimrod's avatar nimrod
Browse files

Only install Vagrant plugin if the plugin is missing.

parent b3a67ac1
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,8 @@ Documents/bin/cron-jobs
if command -v vagrant > /dev/null
then
echo Installing Vagrant plugins >> /dev/stderr
vagrant plugin install landrush || true
vagrant plugin install vagrant-gatling-rsync || true
for plugin in landrush vagrant-gatling-rsync
do
vagrant plugin list | grep -qw "$plugin" || vagrant plugin install "$plugin" || true
done
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment