mirror of
https://github.com/gosticks/brew.git
synced 2026-09-23 01:00:20 +00:00
Pass args.verbose? to Bintray.
This commit is contained in:
@@ -31,7 +31,7 @@ module Homebrew
|
||||
bintray_org = args.bintray_org || "homebrew"
|
||||
bintray_repo = args.bintray_repo || "mirror"
|
||||
|
||||
bintray = Bintray.new(org: bintray_org)
|
||||
bintray = Bintray.new(org: bintray_org, verbose: args.verbose?)
|
||||
|
||||
args.formulae.each do |formula|
|
||||
mirror_url = bintray.mirror_formula(formula, repo: bintray_repo, publish_package: !args.no_publish?)
|
||||
|
||||
@@ -49,7 +49,7 @@ module Homebrew
|
||||
args = pr_upload_args.parse
|
||||
|
||||
bintray_org = args.bintray_org || "homebrew"
|
||||
bintray = Bintray.new(org: bintray_org)
|
||||
bintray = Bintray.new(org: bintray_org, verbose: args.verbose?)
|
||||
|
||||
json_files = Dir["*.json"]
|
||||
odie "No JSON files found in the current working directory" if json_files.empty?
|
||||
|
||||
Reference in New Issue
Block a user