-
Notifications
You must be signed in to change notification settings - Fork 244
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
Adding support for supplementary groups for Linux #685
base: main
Are you sure you want to change the base?
Conversation
@microsoft-github-policy-service agree company="CodeSignal" |
README.md
Outdated
@@ -31,7 +31,7 @@ const ptyProcess = pty.spawn(shell, [], { | |||
env: process.env | |||
}); | |||
|
|||
ptyProcess.onData((data) => { |
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.
Why did you change this? on
was deprecated some time ago and I don't think it's in the .d.ts anymore
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.
Oh, I made that change based on ITerminal
from src/interfaces.ts
. Reverted it back
Hi @Tyriar I addressed your comment. Can you review the PR again? |
I assigned @deepak1556 to review, my comment was just a drive-by |
Closes #684
Changes
Functional
suppGids
parameter fornode-pty.spawn
that allows to provide supplementary group IDs for Linux. The parameter will take effect only ifgid
anduid
are provided.Technical
README
example.