]> source.dussan.org Git - redmine.git/commitdiff
fix "can't convert Errno::EACCES into String" in case of no permission of public...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 26 Sep 2012 04:11:00 +0000 (04:11 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 26 Sep 2012 04:11:00 +0000 (04:11 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10471 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/plugin.rb

index dae51ee43043f512ec0aaeae57f6bcf54de56f79..971f48f4ea5c27e7c8aed9f1b01f1b4bc82d9da0 100644 (file)
@@ -346,7 +346,7 @@ module Redmine #:nodoc:
         begin
           FileUtils.mkdir_p(target_dir)
         rescue Exception => e
-          raise "Could not create directory #{target_dir}: \n" + e
+          raise "Could not create directory #{target_dir}: " + e.message
         end
       end
 
@@ -357,7 +357,7 @@ module Redmine #:nodoc:
             FileUtils.cp(file, target)
           end
         rescue Exception => e
-          raise "Could not copy #{file} to #{target}: \n" + e
+          raise "Could not copy #{file} to #{target}: " + e.message
         end
       end
     end