small path fix
This commit is contained in:
@@ -411,7 +411,7 @@ return true,Format_Mini(__a)end
|
|||||||
local args = table.pack(...)
|
local args = table.pack(...)
|
||||||
local projectPath = args[1] or "Basalt"
|
local projectPath = args[1] or "Basalt"
|
||||||
local minifyProject = args[2]=="true" and true or false
|
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)
|
assert(fs.isDir(projectPath), "Unable to find directory: "..projectPath)
|
||||||
|
|
||||||
@@ -501,4 +501,4 @@ else
|
|||||||
outputFile:write(main)
|
outputFile:write(main)
|
||||||
end
|
end
|
||||||
|
|
||||||
outputFile:close()
|
outputFile:close()
|
||||||
Reference in New Issue
Block a user