From d7caca1226c0f089aaf9e3cfedfd010a9df272c5 Mon Sep 17 00:00:00 2001 From: Jared Haight <1220886+jaredhaight@users.noreply.github.com> Date: Sat, 31 Mar 2018 12:43:38 -0700 Subject: [PATCH] Fixes vagrant up for provider vmware_workstation --- build.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.ps1 b/build.ps1 index 35a6776..922343b 100644 --- a/build.ps1 +++ b/build.ps1 @@ -321,7 +321,7 @@ function vagrant_up_host { Write-Host "Attempting to bring up the $VagrantHost host using Vagrant" $CurrentDir = Get-Location Set-Location "$DL_DIR\Vagrant" - &vagrant.exe @('up', $VagrantHost, '--provider', "$Provider") + &vagrant.exe @('up', $VagrantHost, '--provider', "$ProviderName") Set-Location $CurrentDir Write-Verbose "[vagrant_up_host] Finished for $VagrantHost. Got exit code: $LASTEXITCODE" return $LASTEXITCODE