Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Point git-author to updated vmware-archive repo #190

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions git-author.rb
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
class GitAuthor < Formula
desc "The git-author to use git template to include multiple contributors"
homepage "https://github.com/pivotal/git-author"
url "https://github.com/pivotal/git-author/archive/v1.1.0.tar.gz"
homepage "https://github.com/vmware-archive/git-author"
url "https://github.com/vmware-archive/git-author/archive/v1.1.0.tar.gz"
sha256 "603bfd9376b2ce7555dd5b29770c07d5ca73a06fc607f1ee842c371dc9357b9d"
depends_on "git-together"

deprecate! date: "2023-01-18", because: :repo_archived

def install
bin.install "git-author"
bin.install "setup.sh"
system "#{bin}/setup.sh || true"
end

def caveats; <<-EOS
Please follow https://github.com/pivotal/git-author#setup for further setup instructions.
EOS
def caveats
"Please follow https://github.com/vmware-archive/git-author#setup for further setup instructions."
end

test do
Expand Down