Merge pull request #244 from mpeterv/make-target-dir

Use dir.makepath when creating output directory
This commit is contained in:
Steve J Donovan 2016-07-01 14:01:55 +02:00 committed by GitHub
commit 3e573f4edd
1 changed files with 3 additions and 2 deletions

View File

@ -14,7 +14,6 @@ local M = tools
local append = table.insert
local lexer = require 'ldoc.lexer'
local quit = utils.quit
local lfs = require 'lfs'
-- at rendering time, can access the ldoc table from any module item,
-- or the item itself if it's a module
@ -225,7 +224,9 @@ end
function M.check_directory(d)
if not path.isdir(d) then
lfs.mkdir(d)
if not dir.makepath(d) then
quit("Could not create "..d.." directory")
end
end
end