aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorMax Howell2010-02-13 13:12:40 +0000
committerMax Howell2010-02-13 13:12:40 +0000
commit9a1af42a5eeaf3abcc16c0e56dd8cf370fb3035b (patch)
treec8b03d1ded81ebc79b424dbf5248cd8a68e442e2 /Library/Homebrew
parent1a2c5160c59b46bf081d6968174f1ef6dd453618 (diff)
downloadbrew-9a1af42a5eeaf3abcc16c0e56dd8cf370fb3035b.tar.bz2
Fixes Homebrew/homebrew#571; brew update doesn't report "Already up-to-date"
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/update.rb2
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}$}