From df83fcdadf78bb5a70932baa234d3c6a5eddbfdc Mon Sep 17 00:00:00 2001 From: Ben Allfree Date: Tue, 23 Apr 2024 19:01:47 -0700 Subject: [PATCH] wip --- plop/commands/util/exec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plop/commands/util/exec.ts b/plop/commands/util/exec.ts index 0d11dad..5c85e66 100644 --- a/plop/commands/util/exec.ts +++ b/plop/commands/util/exec.ts @@ -16,7 +16,7 @@ export const exec: typeof spawn = async (cmd, _options, onProc) => { ..._options?.env, }, } - console.log(process.env.PATH) + console.log(options.env.PATH) const code = await spawn(cmd, options, onProc) return code }