We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d817134 commit 066f0c8Copy full SHA for 066f0c8
src/util/portable-script.js
@@ -45,7 +45,7 @@ async function makePortableProxyScriptUnix(
45
} else {
46
await fs.writeFile(
47
filePath,
48
- `#!/bin/sh\n\n${environment}"${sourcePath}"${prependedArguments} "$@"${appendedArguments}\n`,
+ `#!/bin/sh\n\n${environment}exec "${sourcePath}"${prependedArguments} "$@"${appendedArguments}\n`,
49
);
50
await fs.chmod(filePath, 0o755);
51
}
0 commit comments