Skip to content

Commit

Permalink
Fixes how signals are forwarded (#6747)
Browse files Browse the repository at this point in the history
  • Loading branch information
arcanis authored Dec 3, 2018
1 parent d817134 commit 066f0c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/portable-script.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ async function makePortableProxyScriptUnix(
} else {
await fs.writeFile(
filePath,
`#!/bin/sh\n\n${environment}"${sourcePath}"${prependedArguments} "$@"${appendedArguments}\n`,
`#!/bin/sh\n\n${environment}exec "${sourcePath}"${prependedArguments} "$@"${appendedArguments}\n`,
);
await fs.chmod(filePath, 0o755);
}
Expand Down

0 comments on commit 066f0c8

Please sign in to comment.