Merge pull request #74 from anarratone/master
Fix virtualbox presence check in build_vagrant_only.sh
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user