Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const NodeChildProcessImplementation: NodeChildProcessProvider = {
exec: async (path, options, callback) => {
// Error is passed directly into resolve to keep compatibility with callback implementations.
// Therefore no need to use a `.catch` block
window.node.child_process.exec(path, options)
await window.node.child_process.exec(path, options)
.then(err => {
if (callback) {
callback(err as unknown as Error);
Expand Down