Merge pull request #1794 from player-03/environment-variable-conflicts

Ignore system environment variables with the same name as common targets.
This commit is contained in:
player-03
2024-07-02 15:56:31 -04:00
committed by GitHub

View File

@@ -184,6 +184,10 @@ class HXProject extends Script
else
{
environment = Sys.environment();
for (conflict in ["air", "android", "cpp", "flash", "hl", "html5", "ios", "linux", "mac", "neko", "webassembly", "windows"])
{
environment.remove(conflict);
}
}
haxedefs = new Map<String, Dynamic>();