Added by Jo Xay about 5 years ago
In case someone will need this information.
Trying to output RAILS_ENV in Redmine root directory with command:
RAILS_ENV=production script/about
script/about: No such file or directory
Solution is to create symbolic link:
ln -s ./bin ./script
This is because in Rails 4 "script" directory has been moved to "bin" (C, Kirti Thorat)