##// END OF EJS Templates
Make sure we don't boot with plugins in vendor/plugins....
Jean-Philippe Lang -
r9417:6fca0289055f
parent child
Show More
@@ -1,5 +1,14
1 # Load the rails application
1 # Load the rails application
2 require File.expand_path('../application', __FILE__)
2 require File.expand_path('../application', __FILE__)
3
3
4 # Make sure there's no plugin in vendor/plugin before starting
5 vendor_plugins_dir = File.join(Rails.root, "vendor", "plugins")
6 if Dir.glob(File.join(vendor_plugins_dir, "*")).any?
7 $stderr.puts "Plugins in vendor/plugins (#{vendor_plugins_dir}) are no longer allowed. " +
8 "Please, put your Redmine plugins in the `plugins` directory at the root of your " +
9 "Redmine directory (#{File.join(Rails.root, "plugins")})"
10 exit 1
11 end
12
4 # Initialize the rails application
13 # Initialize the rails application
5 RedmineApp::Application.initialize!
14 RedmineApp::Application.initialize!
General Comments 0
You need to be logged in to leave comments. Login now