You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Got unpredictable behaviour if output path contains _lua string.
e.g. \tmp\lua_mini_test\booster.lua
Possible solution:
in CommandLineMinify.lua and / or similar places:
line 66-67:
--keep the user from accidentally overwriting their non-minified file with
if arg[1]:find("_min") then
->
--keep the user from accidentally overwriting their non-minified file with
if arg[1]:find("_min.lua") then
The text was updated successfully, but these errors were encountered:
Got unpredictable behaviour if output path contains
_lua
string.e.g.
\tmp\lua_mini_test\booster.lua
Possible solution:
in
CommandLineMinify.lua
and / or similar places:The text was updated successfully, but these errors were encountered: