Merge pull request #74 from anarratone/master

Fix virtualbox presence check in build_vagrant_only.sh
This commit is contained in:
Chris Long
2018-03-19 22:08:57 -07:00
committed by GitHub

View File

@@ -29,7 +29,7 @@ check_vagrant() {
# Returns 0 if not installed or 1 if installed
check_virtualbox_installed() {
if ! which VBoxManage >/dev/null; then
if which VBoxManage >/dev/null; then
echo "1"
else
echo "0"