diff options
| author | xiongchiamiov | 2012-10-16 14:56:31 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-10-16 20:27:05 -0700 | 
| commit | e68d170d1bf527fbf23e285dbc4cd8f6765ee7d2 (patch) | |
| tree | adc5923f99f668448d5ac59babaf2b7dea6c5126 | |
| parent | d72eea6c380a163b802f5b08641a024dd496b50e (diff) | |
| download | homebrew-e68d170d1bf527fbf23e285dbc4cd8f6765ee7d2.tar.bz2 | |
rename: Use stable Github download link
Previously, we've been downloading the script from a link on the author's
website; as he updates the script, this file changes.  This causes SHA1
mismatches and generally makes life annoying.
Thankfully, he's also got it on Github and has tagged exactly one version.  So,
use that version until he releases a new one.
See also:
* https://github.com/mxcl/homebrew/issues/15215
* https://github.com/mxcl/homebrew/issues/15027
* https://github.com/mxcl/homebrew/issues/15221
Closes #15497.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/rename.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Formula/rename.rb b/Library/Formula/rename.rb index 3935da533..6c2e1e820 100644 --- a/Library/Formula/rename.rb +++ b/Library/Formula/rename.rb @@ -2,9 +2,9 @@ require 'formula'  class Rename < Formula    homepage 'http://plasmasturm.org/code/rename' -  url 'http://plasmasturm.org/code/rename/rename', :using => :nounzip +  url 'https://github.com/ap/rename/zipball/v1.100'    version '1.100' -  sha1 '2077cdb11878ffeaefa32063e29af87d8ad7a596' +  sha1 'fad32374f16802fa6bb94c41cdb9f50d63bfafcb'    def install      system 'pod2man', 'rename', 'rename.1' | 
