We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e24fb34 commit dbb24bfCopy full SHA for dbb24bf
src/index.ts
@@ -40,7 +40,7 @@ async function buildHandler(
40
const downloadedFiles = await download(files, workPath, meta);
41
const entryPath = downloadedFiles[entrypoint].fsPath;
42
43
- const HOME = assertEnv('HOME');
+ const HOME = process.platform === 'win32' ? assertEnv('USERPROFILE') : assertEnv('HOME');
44
const PATH = assertEnv('PATH');
45
46
const rustEnv: RustEnv = {
0 commit comments