From 3b33bb7009174be89524c0925528631fc12c1f55 Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Sun, 10 Jul 2022 19:18:58 +0200 Subject: [PATCH] small path fix --- basaltPackager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/basaltPackager.lua b/basaltPackager.lua index 8fbacd6..8d74cef 100644 --- a/basaltPackager.lua +++ b/basaltPackager.lua @@ -411,7 +411,7 @@ return true,Format_Mini(__a)end local args = table.pack(...) local projectPath = args[1] or "Basalt" local minifyProject = args[2]=="true" and true or false -local outputFileName = "basalt.lua" +local outputFileName = args[3] or "basalt.lua" assert(fs.isDir(projectPath), "Unable to find directory: "..projectPath) @@ -501,4 +501,4 @@ else outputFile:write(main) end -outputFile:close() +outputFile:close() \ No newline at end of file