Skip to content
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.

Commit

Permalink
windows: move to fully qualified HOME by using USERPROFILE - closes t…
Browse files Browse the repository at this point in the history
  • Loading branch information
Dane Springmeyer committed Jan 23, 2012
1 parent ee51c0a commit ecd1144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ process.argv[0] = 'node';
if (process.platform === 'win32') {

// HOME is undefined on windows
process.env.HOME = process.env.HOMEPATH;
process.env.HOME = process.env.USERPROFILE;

// don't attempt symlink support at all -- just copy.
// @TODO write a dotfile next to the copy with the link
Expand Down

0 comments on commit ecd1144

Please sign in to comment.