From 442c74dd44f04146bd423ca4a21b2e0c67272d97 Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Wed, 10 Jan 2024 11:04:23 -0600 Subject: [PATCH] This *might* fix Hyper-V test issues? --- test.xsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.xsh b/test.xsh index 64c2e5f..7259672 100755 --- a/test.xsh +++ b/test.xsh @@ -72,8 +72,8 @@ def main(): with open("Vagrantfile", "w") as fw: fw.write(content) if not dry_run: - vagrant box add @(box) --name @(p.name) --force if str(p.parent.name) in ["virtualbox", "libvirt", "vmware", "hyperv"]: + vagrant --provider @(p.parent.name) box add @(box) --name @(p.name) --force vagrant up --provider @(p.parent.name) else: print(f"Now whatcha wanna go and do that for? {box}")