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
...which is causing Error: Class name must start with an uppercase letter.
The problem seems to be that hxp is passing the arguments to the script I want to run as --run <args> but Haxe interprets that as the name of a module. Before Haxe 4 this was passed using -- which I guess does the same as bash (end of command options) but now it just doesn't work.
The text was updated successfully, but these errors were encountered:
I'm trying to fix a problem with a script using HXP. The script contains:
...and hxp is generating the following Haxe command line:
...which is causing
Error: Class name must start with an uppercase letter
.The problem seems to be that hxp is passing the arguments to the script I want to run as
--run <args>
but Haxe interprets that as the name of a module. Before Haxe 4 this was passed using--
which I guess does the same as bash (end of command options) but now it just doesn't work.The text was updated successfully, but these errors were encountered: