lib/pe_build/command/base.rb in vagrant-pe_build-0.10.4 vs lib/pe_build/command/base.rb in vagrant-pe_build-0.11.0
- old
+ new
@@ -1,15 +1,18 @@
require 'vagrant'
class PEBuild::Command::Base < Vagrant.plugin(2, :command)
+ def self.synopsis
+ 'list and download PE installers'
+ end
+
def initialize(argv, env)
super
split_argv
@subcommands = {
'list' => PEBuild::Command::List,
- 'download' => PEBuild::Command::Download,
'copy' => PEBuild::Command::Copy,
}
end
def execute