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
It is currently not possible to use environment variables in recipe/tool definitions.
For example, a user-only (not system-wide) install of NASM compiler will install to:
"%userprofile%\AppData\Local\bin\NASM\nasm.exe"
Python's os.path.expandvars() function would solve this, and should be applied anywhere than environment variable support is needed (tool check strings, build scripts, etc).
The text was updated successfully, but these errors were encountered:
It is currently not possible to use environment variables in recipe/tool definitions.
For example, a user-only (not system-wide) install of NASM compiler will install to:
"%userprofile%\AppData\Local\bin\NASM\nasm.exe"
Python's
os.path.expandvars()
function would solve this, and should be applied anywhere than environment variable support is needed (tool check strings, build scripts, etc).The text was updated successfully, but these errors were encountered: