satelito

Static [web] site (or page) generator (ssg) made with Lua script.
git clone git://soucy.cc/satelito.git
Log | Files | Refs | README

commit ebb73b05235f73b444f5319fe1e85c5b57c8aba1
parent 72a426bc240f59197778b1f12adc7f7b9a7276e3
Author: Hugo Soucy <hugo@soucy.cc>
Date:   Mon,  8 Feb 2021 19:44:27 -0500

Fix a wrong path in the mkdir method

Diffstat:
Msatelito/file.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/satelito/file.lua b/satelito/file.lua @@ -69,7 +69,7 @@ function file.mkdir(filepath) for dir in filepath:gmatch('[^' .. sep .. ']+') do pStr = pStr .. sep .. dir - lfs.mkdir(lfs.currentdir() .. pStr) + lfs.mkdir(pStr) end end