Fixes vagrant up for provider vmware_workstation

This commit is contained in:
Jared Haight
2018-03-31 12:43:38 -07:00
parent 3be47e70c8
commit d7caca1226

View File

@@ -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