Skip to content

Commit 066f0c8

Browse files
authored
Fixes how signals are forwarded (#6747)
1 parent d817134 commit 066f0c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/portable-script.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ async function makePortableProxyScriptUnix(
4545
} else {
4646
await fs.writeFile(
4747
filePath,
48-
`#!/bin/sh\n\n${environment}"${sourcePath}"${prependedArguments} "$@"${appendedArguments}\n`,
48+
`#!/bin/sh\n\n${environment}exec "${sourcePath}"${prependedArguments} "$@"${appendedArguments}\n`,
4949
);
5050
await fs.chmod(filePath, 0o755);
5151
}

0 commit comments

Comments
 (0)