aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-multipush.rb
diff options
context:
space:
mode:
authorJack Nagel2012-02-28 18:34:06 -0600
committerJack Nagel2012-02-28 18:35:09 -0600
commit6ad2c00d986c2f4993df653aa363d58ead8452db (patch)
tree3c6e0cc14a33928ff25181522a79d74ab9406816 /Library/Formula/git-multipush.rb
parent6bcd44fe6283e5cb81d7a6b0cd337ae86220bf7d (diff)
downloadhomebrew-6ad2c00d986c2f4993df653aa363d58ead8452db.tar.bz2
git-multipush: setting GIT_DIR is now unnecessary
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/git-multipush.rb')
-rw-r--r--Library/Formula/git-multipush.rb6
1 files changed, 2 insertions, 4 deletions
diff --git a/Library/Formula/git-multipush.rb b/Library/Formula/git-multipush.rb
index ea24d4333..8ee3aa1c0 100644
--- a/Library/Formula/git-multipush.rb
+++ b/Library/Formula/git-multipush.rb
@@ -1,18 +1,16 @@
require 'formula'
class GitMultipush < Formula
- url 'http://git-multipush.googlecode.com/files/git-multipush-2.3.tar.bz2'
homepage 'http://code.google.com/p/git-multipush/'
+ url 'http://git-multipush.googlecode.com/files/git-multipush-2.3.tar.bz2'
sha1 'a53f171af5e794afe9b1de6ccd9bd0661db6fd91'
+
head 'https://github.com/gavinbeatty/git-multipush.git', :sha => 'HEAD'
depends_on 'asciidoc' => :build if ARGV.build_head?
- # Not depending on git because people might have it
- # installed through another means
def install
if ARGV.build_head?
- ENV['GIT_DIR'] = cached_download+'.git'
inreplace 'make/gen-version.mk', '.git', '$(GIT_DIR)'
system "make"
end