Skip to content
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 alpine support #5322

Merged
merged 2 commits into from
Jul 29, 2022
Merged

Fix alpine support #5322

merged 2 commits into from
Jul 29, 2022

Conversation

JoeRobich
Copy link
Member

Fixes #4742

@@ -61,9 +60,9 @@ export async function execChildProcess(command: string, workingDirectory: string
return new Promise<string>((resolve, reject) => {
cp.exec(command, { cwd: workingDirectory, maxBuffer: 500 * 1024 }, (error, stdout, stderr) => {
if (error) {
reject(`${error}
reject(new Error(`${error}
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Calling code expected that an Error would be rejected.

Copy link
Contributor

@filipw filipw left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

thanks!

@JoeRobich JoeRobich merged commit a675b5f into dotnet:master Jul 29, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

C# extension doesn't work under devcontainer
2 participants