diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-12-26 00:01:56 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2014-12-26 00:01:56 -0500 |
commit | 4fa4146263bb1b861a23055b2422f0f962028608 (patch) | |
tree | 5df404c79272517fbd8311fb3fc1faca996726dd | |
parent | 122f55ced1592f96f12ba860797910e17dcf9741 (diff) | |
parent | 9b67735de9b4e3deb0fd70400dc01f2ec63076eb (diff) | |
download | rails-4fa4146263bb1b861a23055b2422f0f962028608.tar.gz rails-4fa4146263bb1b861a23055b2422f0f962028608.tar.bz2 rails-4fa4146263bb1b861a23055b2422f0f962028608.zip |
Merge pull request #18204 from chocoby/remove-double-space
Remove unnecessary double space
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/bin/setup | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/bin/setup b/railties/lib/rails/generators/rails/app/templates/bin/setup index d5ed4f2e56..eee810be30 100644 --- a/railties/lib/rails/generators/rails/app/templates/bin/setup +++ b/railties/lib/rails/generators/rails/app/templates/bin/setup @@ -3,7 +3,7 @@ require 'fileutils' include FileUtils # path to your application root. -APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) +APP_ROOT = Pathname.new File.expand_path('../../', __FILE__) chdir APP_ROOT do # This script is a starting point to setup your application. |