Skip to content

Commit

Permalink
fix(build): Resolve bad shell invocation shell (#8)
Browse files Browse the repository at this point in the history
Addressed an issue with invocation of child process during building procedure in Windows shell.

Signed-off-by: Ryuu Mitsuki <dhefam31@gmail.com>
  • Loading branch information
mitsuki31 committed May 16, 2024
2 parents 4f23e58 + f5dc677 commit 79fcdf2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions scripts/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ async function minify(files: Array<string>): Promise<void> {
const tsc: ChildProcess = spawn(tscCmd[0], tscCmd.slice(1), {
cwd: rootDir,
stdio: 'inherit',
shell: true,
windowsHide: true
});

Expand Down

0 comments on commit 79fcdf2

Please sign in to comment.