diff --git a/plugins/commands/push/command.rb b/plugins/commands/push/command.rb index f76d5a5d2..902a0c946 100644 --- a/plugins/commands/push/command.rb +++ b/plugins/commands/push/command.rb @@ -9,17 +9,8 @@ module VagrantPlugins # @todo support multiple strategies if requested by the community def execute - options = {} - opts = OptionParser.new do |o| o.banner = "Usage: vagrant push [strategy] [options]" - o.separator "" - o.separator "Options:" - o.separator "" - - o.on("-m", "--message BODY", "Text to identify this push") do |m| - options[:message] = m - end end # Parse the options diff --git a/plugins/pushes/atlas/push.rb b/plugins/pushes/atlas/push.rb index 323f070f5..e44f65364 100644 --- a/plugins/pushes/atlas/push.rb +++ b/plugins/pushes/atlas/push.rb @@ -30,7 +30,6 @@ module VagrantPlugins cmd += metadata.map { |k,v| ["-metadata", "#{k}=#{v}"] } cmd += ["-address", config.address] if config.address cmd += ["-token", config.token] if config.token - cmd += ["-message", message] if message cmd << config.app cmd << File.expand_path(config.dir, env.root_path) Vagrant::Util::SafeExec.exec(uploader, *cmd.flatten)