From 5bf2ceaf3adaf42553afe7a38ab9c2a665d7ff21 Mon Sep 17 00:00:00 2001 From: Mark Gilbert <50398495+MarkProminic@users.noreply.github.com> Date: Tue, 12 Dec 2023 01:01:24 -0600 Subject: [PATCH] fix: enable parallel builds #dangerwillrobinson --- lib/vagrant-zones/plugin.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant-zones/plugin.rb b/lib/vagrant-zones/plugin.rb index b0ce4b5..faa5e4d 100644 --- a/lib/vagrant-zones/plugin.rb +++ b/lib/vagrant-zones/plugin.rb @@ -22,7 +22,7 @@ class Plugin < Vagrant.plugin('2') end ## Experimental Parallel Execucution ## provider(:zone, parallel: true) do - provider(:zone) do + provider(:zone, parallel: true) do require_relative 'provider' Provider end