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
350 B
Ruby
13 lines
350 B
Ruby
require 'formula'
|
|
|
|
class GitGerrit < Formula
|
|
homepage 'https://github.com/fbzhong/git-gerrit'
|
|
url 'https://github.com/fbzhong/git-gerrit/archive/v0.3.0.tar.gz'
|
|
sha1 '0e38e6f6657ff50d6692de9ce880d4698120325b'
|
|
|
|
def install
|
|
prefix.install 'bin'
|
|
|
|
(prefix+'etc/bash_completion.d').install 'completion/git-gerrit-completion.bash'
|
|
end
|
|
end
|