-
-
Notifications
You must be signed in to change notification settings - Fork 539
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails to find configured Python on Windows #474
Labels
Comments
JamesMGreene
changed the title
next/no-bundle branch: fails to find configured Python on Windows
Fails to find configured Python on Windows
May 4, 2018
This was referenced May 4, 2018
calebboyd
pushed a commit
that referenced
this issue
May 5, 2018
calebboyd
pushed a commit
that referenced
this issue
May 5, 2018
calebboyd
pushed a commit
that referenced
this issue
May 5, 2018
calebboyd
pushed a commit
that referenced
this issue
May 8, 2018
fixes #474 amends #476 related to nodejs/node#20605
uzdry
pushed a commit
to uzdry/nexe
that referenced
this issue
Feb 28, 2020
uzdry
pushed a commit
to uzdry/nexe
that referenced
this issue
Feb 28, 2020
…xe#481) fixes nexe#474 amends nexe#476 related to nodejs/node#20605
nevilm-lt
pushed a commit
to nevilm-lt/nexe-test
that referenced
this issue
Feb 8, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a
If this is a bug report, What are the steps to reproduce?
If I configure the
python
option, nexe still fails to find the configured Python. It turns out this is an issue with the way theprocess.env
object is being replicated in "compiler.ts" because, while part of theprocess.env
object, the properties are treated caseless-ly (like when using thecaseless
module) but once they are copied over tothis.env
, they are no longer caseless. In my case,this.env.PATH
isundefined
because the property name after assignment was actuallythis.env.Path
.Please also provide:
8.11.1
4.8.3
2.0.0-next.9
2.7.11
The text was updated successfully, but these errors were encountered: