diff options
| author | Baptiste Fontaine | 2014-12-15 19:47:39 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-15 19:02:37 +0000 |
| commit | 339fea9138bd1a00803e5b1da02f4605a2e0211d (patch) | |
| tree | 61a8c6f0531e55a588a080efdb807ca6eedbf683 /Library | |
| parent | 4a05e3194a386aa90b3fb7735e80b31308481c87 (diff) | |
| download | homebrew-339fea9138bd1a00803e5b1da02f4605a2e0211d.tar.bz2 | |
appscale-tools 2.1.0
Closes #35006.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/appscale-tools.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/Library/Formula/appscale-tools.rb b/Library/Formula/appscale-tools.rb index 9bfb5a2c6..f0c431830 100644 --- a/Library/Formula/appscale-tools.rb +++ b/Library/Formula/appscale-tools.rb @@ -2,8 +2,8 @@ require "formula" class AppscaleTools < Formula homepage "https://github.com/AppScale/appscale-tools" - url "https://github.com/AppScale/appscale-tools/archive/2.0.0.tar.gz" - sha1 "d6855bd6e91b56fd07d7bf59f81ea6cdd1a482b8" + url "https://github.com/AppScale/appscale-tools/archive/2.1.0.tar.gz" + sha1 "b20e358b40c5af4d095f0113128084de2f5c288e" head "https://github.com/AppScale/appscale-tools.git" depends_on :python if MacOS.version <= :snow_leopard @@ -61,9 +61,7 @@ class AppscaleTools < Formula r.stage { system "python", "setup.py", "install", "--prefix=#{libexec}" } end - inreplace Dir["bin/appscale*"] do |s| - s.gsub! /^lib = os.*/, "lib = '#{libexec}'" - end + inreplace Dir["bin/appscale*"], /^ lib = os.*/, " lib = '#{libexec}'" prefix.install "bin", "templates", "LICENSE", "README.md" libexec.install Dir["lib/*"] @@ -73,5 +71,6 @@ class AppscaleTools < Formula test do system bin/"appscale", "help" + system bin/"appscale", "init", "cloud" end end |
