From 0ff5ce69dbc9a0fb1119379a2cbfa54d6ef49ed8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 29 Jan 2018 21:19:21 -0800 Subject: [PATCH] Split out the VM name --- build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.py b/build.py index 9b4fc0b9..fa1efb09 100755 --- a/build.py +++ b/build.py @@ -1495,7 +1495,7 @@ def cmd_build_vagrant(options, args): VMs = options.vagrant_vms.split(',') for vmName in VMs: - vmDir = opj(phoenixDir(), 'vagrant', vmName) + vmDir = opj(phoenixDir(), 'vagrant', vmName.split()[0]) pwd = pushDir(vmDir) msg('Starting Vagrant VM in {}'.format(vmDir)) runcmd('vagrant up')