Skip to content

Commit 01159c0

Browse files
authored
chore: Inherit environment variables in deno cache build script (#36782)
1 parent 88fb1e5 commit 01159c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/apps-engine/scripts/deno-cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const DENO_DIR = process.env.DENO_DIR ?? path.join(rootPath, '.deno-cache');
1818
childProcess.execSync('deno cache main.ts', {
1919
cwd: denoRuntimePath,
2020
env: {
21+
...process.env,
2122
DENO_DIR,
22-
PATH: process.env.PATH,
2323
},
2424
stdio: 'inherit',
2525
});

0 commit comments

Comments
 (0)