-
The following workflow
produces the following error
|
Beta Was this translation helpful? Give feedback.
Answered by
Vampire
Jul 12, 2021
Replies: 1 comment 2 replies
-
This is normal WSL behavior. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
skirmess
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is normal WSL behavior.
Almost no environment variables are forwarded from Windows to WSL by default.
You need to use
WSLENV
to configure which environment variables are forwarded and how they should be converted (path, list of paths, plain, ...).In your example if you add
WSLENV: TEST_ENV
as environment variable, it runs through as expected.