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
There is an issue where I cannot unset an environment variable when targetting neko with Haxe.
If I check the value of a variable that does not exist yet, it returns null:
Sys.getEnv("VARIABLE"); //null
Afterwards, if I set it, then I am unable to unset it. Setting it to an empty string means that getting the value of the variable will now be the empty string instead of null, whereas on Windows it deletes the variable.
There is an issue where I cannot unset an environment variable when targetting neko with Haxe.
If I check the value of a variable that does not exist yet, it returns null:
Afterwards, if I set it, then I am unable to unset it. Setting it to an empty string means that getting the value of the variable will now be the empty string instead of
null
, whereas on Windows it deletes the variable.If I run this code on the eval target then it works properly, after setting to an empty string,I was wrong.Sys.getEnv
returnsnull
again.The text was updated successfully, but these errors were encountered: