Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
benallfree committed Apr 23, 2024
1 parent e72fc77 commit ccb806a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion plop/commands/testCommand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function testCommand(plop: NodePlopAPI) {

exec(`npm i -g gobot-${pkg.version}.tgz`),

exec('echo $PATH'),
exec('echo $Env::PATH'),
exec('npm bin -g'),

exec(`gobot --g-version`),
Expand Down
1 change: 1 addition & 0 deletions plop/commands/util/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const exec: typeof spawn = async (cmd, _options, onProc) => {
..._options?.env,
},
}
console.log({ options })
const code = await spawn(cmd, options, onProc)
return code
}

0 comments on commit ccb806a

Please sign in to comment.