carthage 0.5.3

Also, the `make clean` step can now be removed, per https://github.com/Carthage/Carthage/pull/284#issuecomment-70677079.

Closes Homebrew/homebrew#36646.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
Justin Spahr-Summers 2015-02-07 23:04:22 -08:00 committed by Mike McQuaid
parent b5a09b198e
commit 4493ecd682

View file

@ -2,7 +2,7 @@ require "formula"
class Carthage < Formula
homepage "https://github.com/Carthage/Carthage"
url "https://github.com/Carthage/Carthage.git", :tag => "0.5.2",
url "https://github.com/Carthage/Carthage.git", :tag => "0.5.3",
:shallow => false
head "https://github.com/Carthage/Carthage.git", :shallow => false
@ -20,9 +20,6 @@ class Carthage < Formula
cp_r cached_download/".git", "."
system "make", "prefix_install", "PREFIX=#{prefix}"
# Carthage puts some stuff in /tmp so clean it up after we're done.
system "make", "clean"
end
test do