1
0
mirror of https://github.com/LDDestroier/CC/ synced 2025-09-10 14:56:04 +00:00

Fixed self-extractor code

I cannot believe that slipped in there for so long
This commit is contained in:
LDDestroier
2022-04-17 02:10:23 -04:00
committed by GitHub
parent ba6deba4d9
commit fa4502e035

View File

@@ -935,7 +935,7 @@ local outputPath = ]] ..
(selfExtractorFolder and (
"shell.resolve(\"" .. selfExtractorFolder .. "\")"
) or (
"tArg[1] and shell.resolve(tArg[1]) or ]]" .. ((defaultAutoExtractPath and ("\"" .. defaultAutoExtractPath .. "\"")) or "shell.getRunningProgram()")
"tArg[1] and shell.resolve(tArg[1]) or " .. ((defaultAutoExtractPath and ("\"" .. defaultAutoExtractPath .. "\"")) or "shell.getRunningProgram()")
)) .. [[
local safeColorList = {[colors.white] = true,[colors.lightGray] = true,[colors.gray] = true,[colors.black] = true}