Skip to content

Commit

Permalink
Test breaking Windows CI
Browse files Browse the repository at this point in the history
  • Loading branch information
osyrisrblx committed Oct 17, 2023
1 parent b064d31 commit b2c83c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const packageManagerCommands: {
function cmd(cmdStr: string, cwd: string) {
return new Promise<string>((resolve, reject) => {
const [command, ...args] = cmdStr.split(" ");
const childProcess = spawn(command, args, { cwd, shell: true });
const childProcess = spawn(command, args, { cwd });
let output = "";
childProcess.stdout.on("data", data => (output += data));
childProcess.stderr.on("data", data => (output += data));
Expand Down

0 comments on commit b2c83c2

Please sign in to comment.