commit 4c383923a227ac2954e9f1e8d0c03197d3a66313
parent 4800ae897a22d20a7b05b1ea49abc2da979c6a45
Author: Hugo Soucy <hugo@soucy.cc>
Date: Wed, 30 Nov 2022 14:50:25 -0500
Remove the 2nd argument because is not needed anymore
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/satelito/init.lua b/satelito/init.lua
@@ -166,5 +166,5 @@ if args['make'] then
-- Sort before make the website
table.sort(lume.unique(sitedata), function(a, b) return a.idorder > b.idorder end)
- return site.make(sitedata, args['export'])
+ return site.make(sitedata)
end