aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--railties/CHANGELOG2
-rw-r--r--railties/lib/rails_generator/scripts.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index 16267cff66..6ae02fcb37 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Corrected project-local generator location in scripts.rb #2010 [Michael Schuerig]
+
* Don't require the environment just to clear the logs #2093 [Scott Barron]
* Make the default rakefile read *.rake files from config/tasks (for easy extension of the rakefile by e.g. generators)
diff --git a/railties/lib/rails_generator/scripts.rb b/railties/lib/rails_generator/scripts.rb
index f0b6b6f1ff..bbec46222e 100644
--- a/railties/lib/rails_generator/scripts.rb
+++ b/railties/lib/rails_generator/scripts.rb
@@ -59,7 +59,7 @@ end_blurb
if Object.const_defined?(:RAILS_ROOT)
usage << <<end_blurb
- or to #{File.expand_path(RAILS_ROOT)}/script/generators/login
+ or to #{File.expand_path(RAILS_ROOT)}/generators/login
to use with this app only.
end_blurb
end