diff options
| author | Jack Nagel | 2013-03-28 14:06:45 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-03-28 14:07:47 -0500 |
| commit | 6036dcf4e7f34cdb7618d26b641e7a5ff6b16345 (patch) | |
| tree | af2b8bf229931d0f607ff6b6b79c813bcfa4ab1a /Library | |
| parent | 3f8ee12719287bb687e19973426718b802485dcd (diff) | |
| download | homebrew-6036dcf4e7f34cdb7618d26b641e7a5ff6b16345.tar.bz2 | |
jsawk: use archive URL
Fixes #18798.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/jsawk.rb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/jsawk.rb b/Library/Formula/jsawk.rb index 796a7f062..5dd34ef0e 100644 --- a/Library/Formula/jsawk.rb +++ b/Library/Formula/jsawk.rb @@ -2,14 +2,15 @@ require 'formula' class Jsawk < Formula homepage 'https://github.com/micha/jsawk' - url 'https://github.com/micha/jsawk/zipball/1.2' - sha1 '45f1cd62e146240d9ec8a595425a6d9368f369d6' + url 'https://github.com/micha/jsawk/archive/1.2.tar.gz' + sha1 '386ab745a07f650adac2e980d5a53ae037e495ed' + head 'https://github.com/micha/jsawk.git' depends_on 'spidermonkey' def install - system "mv README.markdown README" + mv "README.markdown", "README" bin.install "jsawk" end end |
