From 167d9f2e98ac0b3388a541eff1afe4f4aa169ba5 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 15 Sep 2014 10:30:39 +0100 Subject: [PATCH] bash-git-prompt: general cleanup. --- Formula/bash-git-prompt.rb | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Formula/bash-git-prompt.rb b/Formula/bash-git-prompt.rb index 50349a6d0bb3b..104797fe299ba 100644 --- a/Formula/bash-git-prompt.rb +++ b/Formula/bash-git-prompt.rb @@ -3,17 +3,18 @@ class BashGitPrompt < Formula homepage "https://github.com/magicmonty/bash-git-prompt" url "https://github.com/magicmonty/bash-git-prompt/archive/2.0.tar.gz" - head "https://github.com/magicmonty/bash-git-prompt", :using => :git sha1 "3c0bc71302b97260cf8d14a1f01be732039365b9" + head "https://github.com/magicmonty/bash-git-prompt.git" def install - share.install "./gitprompt.sh", "./gitprompt.fish", "./git-prompt-help.sh", "./git-prompt-colors.sh", "gitstatus.sh", "prompt-colors.sh" + share.install "./gitprompt.sh", "./gitprompt.fish", "./git-prompt-help.sh", + "./git-prompt-colors.sh", "gitstatus.sh", "prompt-colors.sh" doc.install "README.md" end def caveats; <<-EOS.undent - You should add the following to your .bashrc or equivalent: - source #{opt_share}/gitprompt.sh + You should add the following to your .bashrc (or equivalent): + source #{opt_share}/gitprompt.sh EOS end end