3ad9a0896f
The `brew audit` check complains about the older /tarball/ URL scheme. Update formulae to use the new /archive/ URL and update the SHA to match. Closes Homebrew/homebrew#18813. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
351 B
Ruby
13 lines
351 B
Ruby
require 'formula'
|
|
|
|
class GitEncrypt < Formula
|
|
homepage 'https://github.com/shadowhand/git-encrypt'
|
|
url 'https://github.com/shadowhand/git-encrypt/archive/0.3.0.tar.gz'
|
|
sha1 '24ce80398c003c082a21402eddf9e73387b6f885'
|
|
|
|
head 'https://github.com/shadowhand/git-encrypt.git', :branch => 'master'
|
|
|
|
def install
|
|
bin.install 'gitcrypt'
|
|
end
|
|
end
|