Skip to content

Commit

Permalink
fix(cli): missing shebang in zig-cross sh file
Browse files Browse the repository at this point in the history
  • Loading branch information
Brooooooklyn committed Jan 18, 2022
1 parent 859b422 commit 63a16d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/build.ts
Expand Up @@ -250,7 +250,7 @@ export class BuildCommand extends Command {
const forwardArgs = process.platform === 'win32' ? '%*' : '$@'
await writeFileAsync(
linkerWrapperShell,
`node ${linkerWrapper} ${forwardArgs}`,
`#!/bin/sh\nnode ${linkerWrapper} ${forwardArgs}`,
{
mode: '777',
},
Expand Down

0 comments on commit 63a16d0

Please sign in to comment.