From bce0d1acc99d32f1d322c8f6db79ce9a18db2fdb Mon Sep 17 00:00:00 2001 From: Seth Vargo Date: Mon, 15 Dec 2014 01:27:40 -0500 Subject: [PATCH] Pushes are strings --- plugins/commands/push/command.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/commands/push/command.rb b/plugins/commands/push/command.rb index 455b6fadc..dabe74bb6 100644 --- a/plugins/commands/push/command.rb +++ b/plugins/commands/push/command.rb @@ -51,7 +51,8 @@ module VagrantPlugins if pushes.length == 1 return pushes.first.to_sym else - raise Vagrant::Errors::PushStrategyNotProvided, pushes: pushes + raise Vagrant::Errors::PushStrategyNotProvided, + pushes: pushes.map(&:to_s) end end