You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
process.env.HOME does not exist on windows, but process.env.HOMEPATH does. process.env.HOME is used many places, even by dependencies of TileMill, so we should likely do at startup in index.js on windows:
if (process.platform == 'win32') {
process.env.HOME = process.env.HOMEPATH;
}
Unless there is reason to store documents in a custom location. Needs more research.
The text was updated successfully, but these errors were encountered:
process.env.HOME
does not exist on windows, butprocess.env.HOMEPATH
does.process.env.HOME
is used many places, even by dependencies of TileMill, so we should likely do at startup inindex.js
on windows:Unless there is reason to store documents in a custom location. Needs more research.
The text was updated successfully, but these errors were encountered: