fix(cli): missing shebang in zig-cross sh file
This commit is contained in:
parent
859b422ba8
commit
63a16d0a27
1 changed files with 1 additions and 1 deletions
|
@ -250,7 +250,7 @@ export class BuildCommand extends Command {
|
||||||
const forwardArgs = process.platform === 'win32' ? '%*' : '$@'
|
const forwardArgs = process.platform === 'win32' ? '%*' : '$@'
|
||||||
await writeFileAsync(
|
await writeFileAsync(
|
||||||
linkerWrapperShell,
|
linkerWrapperShell,
|
||||||
`node ${linkerWrapper} ${forwardArgs}`,
|
`#!/bin/sh\nnode ${linkerWrapper} ${forwardArgs}`,
|
||||||
{
|
{
|
||||||
mode: '777',
|
mode: '777',
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue