aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/pull.rb
diff options
context:
space:
mode:
authorMike McQuaid2015-02-17 18:57:19 +0000
committerMike McQuaid2015-02-17 18:57:59 +0000
commit507aee207884a936e0a83cd283ad1dbe44554c11 (patch)
treefc538c57ab731a3396d85a210cf467f2129668e6 /Library/Homebrew/cmd/pull.rb
parent69f15b83cc479f930db26fd4c6800ff31f646dfa (diff)
downloadhomebrew-507aee207884a936e0a83cd283ad1dbe44554c11.tar.bz2
Add initial Bintray upload support.
Diffstat (limited to 'Library/Homebrew/cmd/pull.rb')
-rw-r--r--Library/Homebrew/cmd/pull.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/pull.rb b/Library/Homebrew/cmd/pull.rb
index cf0b74543..ac43bdad6 100644
--- a/Library/Homebrew/cmd/pull.rb
+++ b/Library/Homebrew/cmd/pull.rb
@@ -152,6 +152,10 @@ module Homebrew
safe_system "git", "checkout", branch
safe_system "git", "merge", "--ff-only", "--no-edit", bottle_branch
safe_system "git", "branch", "-D", bottle_branch
+
+ # TODO: publish on bintray
+ # safe_system "curl", "-u#{user}:#{key}", "-X", "POST",
+ # "https://api.bintray.com/content/homebrew/#{repo}/#{formula}/#{version}"
end
ohai 'Patch changed:'