diff options
| author | Mike McQuaid | 2014-09-15 10:30:39 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2014-09-15 10:31:00 +0100 | 
| commit | 2cc793e438771e7d7976cdda425f5e9b0c5e6f8e (patch) | |
| tree | 765d2ff894ccfc0263cacbb40d0c983741cff7b6 /Library/Formula/bash-git-prompt.rb | |
| parent | 6ec4de5b046808ffe79597e6fa54f35ac0ecd8a2 (diff) | |
| download | homebrew-2cc793e438771e7d7976cdda425f5e9b0c5e6f8e.tar.bz2 | |
bash-git-prompt: general cleanup.
Diffstat (limited to 'Library/Formula/bash-git-prompt.rb')
| -rw-r--r-- | Library/Formula/bash-git-prompt.rb | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/bash-git-prompt.rb b/Library/Formula/bash-git-prompt.rb index 50349a6d0..104797fe2 100644 --- a/Library/Formula/bash-git-prompt.rb +++ b/Library/Formula/bash-git-prompt.rb @@ -3,17 +3,18 @@ require "formula"  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  | 
