From b2f9e86135c90494bd3e1957cf5728e988fbb453 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 7 May 2014 15:12:30 -0700 Subject: [PATCH] providers/docker: make sure command isn't scoped --- plugins/providers/docker/command/run.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/providers/docker/command/run.rb b/plugins/providers/docker/command/run.rb index 243973db5..24ddf2c87 100644 --- a/plugins/providers/docker/command/run.rb +++ b/plugins/providers/docker/command/run.rb @@ -28,6 +28,7 @@ module VagrantPlugins # Parse out the extra args to send to SSH, which is everything # after the "--" + command = nil split_index = @argv.index("--") if split_index command = @argv.drop(split_index + 1)