We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I don't know why by my XP has no LOCALAPPDATA env var. It only has APPDATA
LOCALAPPDATA
APPDATA
Sorry I don't have a patch (made too many changes before I found the issue).
basically in windows.js at the top I added
var appData = process.env.LOCALAPPDATA || process.env.APPDATA;
And then changed all other references of process.env.LOCALAPPDATA to appData.
process.env.LOCALAPPDATA
appData
Also, and I'm guessing you know this but
function getPath() { return path.join.apply(path, arguments); }
can just be
var getPath = path.join.bind(path);
if you prefer.
The text was updated successfully, but these errors were encountered:
Closed via #32.
Sorry, something went wrong.
No branches or pull requests
I don't know why by my XP has no
LOCALAPPDATA
env var. It only hasAPPDATA
Sorry I don't have a patch (made too many changes before I found the issue).
basically in windows.js at the top I added
And then changed all other references of
process.env.LOCALAPPDATA
toappData
.Also, and I'm guessing you know this but
can just be
if you prefer.
The text was updated successfully, but these errors were encountered: