Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add HOME env var to passed through list #299

Merged
merged 2 commits into from
Jul 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions lib/launcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,13 @@ class Launcher {
// must always include the PATH so npm works
env.PATH = process.env.PATH

// should set HOME env var
if (process.platform === 'win32') {
env.UserProfile = process.env.UserProfile
} else {
env.HOME = process.env.HOME
}

// Use local timezone if set, else use one from snapshot settings
// this will be ignored on Windows as it does not use the TZ env var
env.TZ = process.env.TZ ? process.env.TZ : this.settings?.settings?.timeZone
Expand Down