lib/pkg-wizard/commands/remote_build.rb in pkg-wizard-0.1.22 vs lib/pkg-wizard/commands/remote_build.rb in pkg-wizard-0.1.23
- old
+ new
@@ -26,16 +26,16 @@
:show_options => true,
:exit => 0
option :buildbot,
:short => '-b URL',
- :description => 'rpmwiz build-bot URL',
+ :description => 'pkg-wizard build-bot URL',
:long => '--buildbot URL'
option :buildbot_port,
:short => '-p PORT',
- :description => 'rpmwiz build-bot PORT (default 80)',
+ :description => 'pkg-wizard build-bot PORT (default 4567)',
:long => '--buildbot-port PORT',
:default => 4567
option :source,
:short => '-s SOURCE',
@@ -47,10 +47,10 @@
:description => 'Directory for downloaded files to be put',
:default => '/tmp'
def self.perform
cli = RemoteBuild.new
- cli.banner = "\nUsage: rpmwiz remote-build (options)\n\n"
+ cli.banner = "\nUsage: pkgwiz remote-build (options)\n\n"
pkgs = cli.parse_options
bbot_host = cli.config[:buildbot]
bbot_port = cli.config[:buildbot_port]
bbot_url = "http://#{bbot_host}:#{bbot_port}"
if bbot_host.nil?