aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authordinkypumpkin2011-03-15 13:40:55 +0000
committerAdam Vandenberg2011-03-15 09:45:44 -0700
commit232acd05786b1f28bfafe94971478a1d30ab1aa6 (patch)
treef7ef5080b1f359991705be003adc15691db9d662 /Library
parent8e802de22802d4e93d828e98064fdc9785591ea5 (diff)
downloadhomebrew-232acd05786b1f28bfafe94971478a1d30ab1aa6.tar.bz2
added caveats
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/grails.rb35
1 files changed, 35 insertions, 0 deletions
diff --git a/Library/Formula/grails.rb b/Library/Formula/grails.rb
index 51fbc41f2..77bd39b78 100644
--- a/Library/Formula/grails.rb
+++ b/Library/Formula/grails.rb
@@ -15,4 +15,39 @@ class Grails < Formula
ln_s f, bin+File.basename(f)
end
end
+
+ def caveats
+ <<-EOS.undent
+ IMPORTANT!
+
+ Notes On Upgrading #{name.capitalize} From Versions < 1.3.7
+
+ The directory layout has been changed slightly for versions >= 1.3.7
+ in order to conform with Homebrew conventions for installation of Java
+ jar files. Please note the following:
+
+ Before upgrading -
+
+ run 'brew unlink #{name}' (keeps old version in cellar)
+ OR
+ run 'brew rm #{name}' (deletes old version from cellar)
+ THEN
+ run 'brew prune'
+
+ This is to ensure that #{HOMEBREW_PREFIX} is cleaned of references to the
+ old version.
+
+ The #{name.capitalize} home directory for versions < 1.3.7 was in the form:
+
+ #{HOMEBREW_CELLAR}/#{name}/1.3.6
+
+ For versions >= 1.3.7, the #{name.capitalize} home directory is in the form:
+
+ #{libexec}
+
+ If you set the GRAILS_HOME variable explicitly in your shell environment,
+ change its value accordingly.
+ EOS
+ end
+
end