diff options
| author | Max Howell | 2010-02-13 13:12:40 +0000 |
|---|---|---|
| committer | Max Howell | 2010-02-13 13:12:40 +0000 |
| commit | c3f32fef70e7209af3e3190a2645a2e39b6198c9 (patch) | |
| tree | f9c69a6fc75f82b47a81e666e12b68c0d7dd5c02 /Library | |
| parent | 84d30d76a28cd30b1f3b08c6f9c3cd817cb587f7 (diff) | |
| download | homebrew-c3f32fef70e7209af3e3190a2645a2e39b6198c9.tar.bz2 | |
Fixes #571; brew update doesn't report "Already up-to-date"
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/update.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/update.rb b/Library/Homebrew/update.rb index f500fdd8e..ccb7dac62 100644 --- a/Library/Homebrew/update.rb +++ b/Library/Homebrew/update.rb @@ -26,7 +26,7 @@ class RefreshBrew CHECKOUT_COMMAND = 'git checkout -q master' UPDATE_COMMAND = "git pull #{RESPOSITORY_URL} master" REVISION_COMMAND = 'git log -l -1 --pretty=format:%H 2> /dev/null' - GIT_UP_TO_DATE = 'Already up-to-date' + GIT_UP_TO_DATE = 'Already up-to-date.' formula_regexp = 'Library/Formula/(.+?)\.rb' ADDED_FORMULA = %r{^\s+create mode \d+ #{formula_regexp}$} |
