-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
fix(core): remove Windows cmd window popups #14965
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So here's the rules?:
- execSync
- needs
windowsHide: true
- needs
- spawn
- needs
detached: true
- needs
Yea, essentially. Basically if detached is there, use it with |
951af32
to
091ca5b
Compare
091ca5b
to
ca167e9
Compare
@Cammisuli Please let me know if you'd like me to provide more info or if you're able to reproduce on your side. |
@mayfieldiv if you're having issues with the git hasher, try enabling the native hasher by setting |
It looks like the native hasher doesn't return any files on Windows either in the latest master build. I think I have a fix for the relevant Rust code and will make a PR and tag you in it. |
Has this been released yet ? |
This pull request has already been merged/closed. If you experience issues related to these changes, please open a new issue referencing this pull request. |
Current Behavior
There are a few places where we launch subprocesses to deal with hashing. When this happened, we did not tell Windows to hide or detach the process. This then causes cmd windows to appear
Expected Behavior
No cmd windows should appear when running with the daemon or other nx commands
Related Issue(s)
Fixes #10822