diff options
| author | Adam Vandenberg | 2012-07-06 19:49:51 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2012-07-06 19:49:51 -0700 |
| commit | 1c0a1a6af2468d34ee4fada719e419f46f3c256b (patch) | |
| tree | 818ab9083f1388bc7a6d2303f2325163eb3b2aba | |
| parent | 4c8c08dba246dfbc38b00a748d78dbc687fb9191 (diff) | |
| download | homebrew-1c0a1a6af2468d34ee4fada719e419f46f3c256b.tar.bz2 | |
storm: use sha1 and simplify install
| -rw-r--r-- | Library/Formula/storm.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/storm.rb b/Library/Formula/storm.rb index ca8b7be71..74d405d6f 100644 --- a/Library/Formula/storm.rb +++ b/Library/Formula/storm.rb @@ -3,10 +3,10 @@ require 'formula' class Storm < Formula homepage 'https://github.com/nathanmarz/storm/wiki' url 'https://github.com/downloads/nathanmarz/storm/storm-0.7.4.zip' - md5 '4d00cc826443fc2fc76514f3b688d656' + sha1 '1ee4ec917c52a49d8cc11b4d2e8b41b79c98f97a' def install libexec.install Dir['*'] - bin.install_symlink Dir["#{libexec}/bin/storm"] + bin.install_symlink libexec/"bin/storm" end end |
