diff options
| author | Brad Beyenhof | 2014-01-16 17:57:21 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-16 17:57:21 +0000 |
| commit | c0d7ec9c7b4d4b59608eceb4dc7242e4f9c3a373 (patch) | |
| tree | 4c3fcfd9138dab311607b66dad0d6a5bf4beb776 | |
| parent | ec10607bf4c51c09f6879ee029cb4f4639f596cb (diff) | |
| download | homebrew-c0d7ec9c7b4d4b59608eceb4dc7242e4f9c3a373.tar.bz2 | |
liquidprompt 1.8
Move liquidprompt script to share & notify in info.
Closes #25925.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/liquidprompt.rb | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Library/Formula/liquidprompt.rb b/Library/Formula/liquidprompt.rb index 813817d7c..b5b37240c 100644 --- a/Library/Formula/liquidprompt.rb +++ b/Library/Formula/liquidprompt.rb @@ -2,23 +2,23 @@ require 'formula' class Liquidprompt < Formula homepage 'https://github.com/nojhan/liquidprompt' - url 'https://github.com/nojhan/liquidprompt/archive/v_1.7.tar.gz' - sha1 'db7f24b20f09480b3491c5250f30f7ccd67ee44e' + url 'https://github.com/nojhan/liquidprompt/archive/v_1.8.tar.gz' + sha1 'ad481e98b0f6ed251cd65cb01464da151929f081' def install - (share+'liquidprompt').install 'liquidpromptrc-dist' - bin.install 'liquidprompt' + share.install 'liquidpromptrc-dist' + share.install 'liquidprompt' end def caveats; <<-EOS.undent Add the following lines to your bash or zsh config (e.g. ~/.bash_profile): - if [ -f $(brew --prefix)/bin/liquidprompt ]; then - . $(brew --prefix)/bin/liquidprompt + if [ -f #{HOMEBREW_PREFIX}/share/liquidprompt ]; then + . #{HOMEBREW_PREFIX}/share/liquidprompt fi If you'd like to reconfigure options, you may do so in ~/.liquidpromptrc. A sample file you may copy and modify has been installed to - #{HOMEBREW_PREFIX}/share/liquidprompt/liquidpromptrc-dist + #{HOMEBREW_PREFIX}/share/liquidpromptrc-dist Don't modify the PROMPT_COMMAND variable elsewhere in your shell config; that will break things. |
