We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfb823c commit a83e41fCopy full SHA for a83e41f
1 file changed
tools/config.py
@@ -85,7 +85,7 @@ def normalize_relative_environment_variables():
85
# normalize the path directives to current environment here, so that any
86
# sub-tool spawns will see the path to the tool from the parent process.
87
# However, be careful not to normalize e.g. 'python' or other PATH lookups.
88
- for env_var in {'EMSDK_PYTHON', 'NODE_JS'}:
+ for env_var in ['EMSDK_PYTHON', 'NODE_JS']:
89
path = os.environ.get(env_var)
90
if path and ('\\' in path or '/' in path):
91
os.environ[env_var] = os.path.abspath(os.environ[env_var])
0 commit comments