From bb53713608a6911ae69df1961a3ad7f16c20aaee Mon Sep 17 00:00:00 2001 From: Daniel Munn Date: Mon, 4 Jun 2012 05:08:35 +0100 Subject: [PATCH] Fix: path in rake file breaks rake usage for redmine due to path change for plugins --- lib/tasks/dmsf_convert_documents.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/dmsf_convert_documents.rake b/lib/tasks/dmsf_convert_documents.rake index 717c9539..e2e9653b 100644 --- a/lib/tasks/dmsf_convert_documents.rake +++ b/lib/tasks/dmsf_convert_documents.rake @@ -29,7 +29,7 @@ Available options: Example: rake redmine:dmsf_convert_documents project=test RAILS_ENV="production" END_DESC -require File.expand_path(File.dirname(__FILE__) + "/../../../../../config/environment") +require File.expand_path(File.dirname(__FILE__) + "/../../../../config/environment") class DmsfConvertDocuments