Conversation
There are some special environment variables on Windows that start with a '=' sign, e.g. per-drive working directories. In those cases, an initial '=' in the name of the environment variable needs to be skipped when looking for the '=' that separates it from its value.
3 tasks
Contributor
Author
richardlau
approved these changes
Sep 13, 2019
Member
|
Interesting! Do you have an example of how these look like? Also a link to some docs mentioning this would be most helpful. |
vtjnash
approved these changes
Sep 13, 2019
saghul
approved these changes
Sep 14, 2019
cjihrig
approved these changes
Sep 14, 2019
bzoz
approved these changes
Sep 17, 2019
Contributor
Author
|
Landed in fd1502f |
addaleax
added a commit
that referenced
this pull request
Sep 17, 2019
There are some special environment variables on Windows that start with a '=' sign, e.g. per-drive working directories. In those cases, an initial '=' in the name of the environment variable needs to be skipped when looking for the '=' that separates it from its value. PR-URL: #2473 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jameson Nash <[email protected]> Reviewed-By: Bartosz Sosnowski <[email protected]> Reviewed-By: Saúl Ibarra Corretgé <[email protected]>
2 tasks
RaisinTen
added a commit
to RaisinTen/node
that referenced
this pull request
Dec 13, 2020
The empty name check has been removed since this has landed: libuv/libuv#2473
nodejs-github-bot
pushed a commit
to nodejs/node
that referenced
this pull request
Dec 15, 2020
The empty name check has been removed since this has landed: libuv/libuv#2473 PR-URL: #36133 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
targos
pushed a commit
to nodejs/node
that referenced
this pull request
Dec 21, 2020
The empty name check has been removed since this has landed: libuv/libuv#2473 PR-URL: #36133 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
targos
pushed a commit
to nodejs/node
that referenced
this pull request
May 1, 2021
The empty name check has been removed since this has landed: libuv/libuv#2473 PR-URL: #36133 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Rich Trott <[email protected]> Reviewed-By: James M Snell <[email protected]>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Jul 23, 2025
There are some special environment variables on Windows that start with a '=' sign, e.g. per-drive working directories. In those cases, an initial '=' in the name of the environment variable needs to be skipped when looking for the '=' that separates it from its value. PR-URL: libuv/libuv#2473 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jameson Nash <[email protected]> Reviewed-By: Bartosz Sosnowski <[email protected]> Reviewed-By: Saúl Ibarra Corretgé <[email protected]>
liujinye-sys
pushed a commit
to open-vela/apps_system_libuv
that referenced
this pull request
Dec 16, 2025
There are some special environment variables on Windows that start with a '=' sign, e.g. per-drive working directories. In those cases, an initial '=' in the name of the environment variable needs to be skipped when looking for the '=' that separates it from its value. PR-URL: libuv/libuv#2473 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Jameson Nash <[email protected]> Reviewed-By: Bartosz Sosnowski <[email protected]> Reviewed-By: Saúl Ibarra Corretgé <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
There are some special environment variables on Windows that
start with a '=' sign, e.g. per-drive working directories.
In those cases, an initial '=' in the name of the environment
variable needs to be skipped when looking for the '=' that separates
it from its value.