uade: fix rubocop warning.

This commit is contained in:
Mike McQuaid 2016-11-28 09:24:03 +00:00
parent a77be89c36
commit e2e9e01809

View file

@ -26,11 +26,13 @@ class Uade < Formula
end end
def install def install
resource("bencode-tools").stage do if build.head?
system "./configure", "--prefix=#{prefix}", "--without-python" resource("bencode-tools").stage do
system "make" system "./configure", "--prefix=#{prefix}", "--without-python"
system "make", "install" system "make"
end if build.head? system "make", "install"
end
end
system "./configure", "--prefix=#{prefix}" system "./configure", "--prefix=#{prefix}"
system "make", "install" system "make", "install"