diff options
author | Ralph Amissah <ralph@amissah.com> | 2008-01-19 03:19:08 +0000 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2008-01-19 03:35:04 +0000 |
commit | d6b580c9f67a9ee4b5f57310f34c28799d616da1 (patch) | |
tree | 37fab43f2d367e59cc5bcee178a844e176f7f97c /lib/sisu/v0/sitemaps.rb | |
parent | permit to run on ruby 1.9, debian unstable requires it (diff) |
mkdir_p, and again close running of ruby 1.9
* mkdir_p, [instead of ftools file.mkpath]
* running against ruby 1.9 closed for now
raise request for use of version 1.8 branch
* manual update version
Diffstat (limited to 'lib/sisu/v0/sitemaps.rb')
-rw-r--r-- | lib/sisu/v0/sitemaps.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sisu/v0/sitemaps.rb b/lib/sisu/v0/sitemaps.rb index 9838e60b..3742a786 100644 --- a/lib/sisu/v0/sitemaps.rb +++ b/lib/sisu/v0/sitemaps.rb @@ -104,7 +104,7 @@ module SiSU_Sitemaps end end def make_path(path) - File.mkpath(path) unless FileTest.directory?(path) + mkdir_p(path) unless FileTest.directory?(path) end def output_map(sitemap) path="#{@env.path.output}/#{@md.fnb}" |