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
// make sure Meteor doesn't try to install into our soon to be clean home dir
process.env.METEOR_WAREHOUSE_DIR = path.join(process.env.HOME, '.meteor');
I've looked into Meteor sources and found that in all places where this variable used, there will be no difference if we just remove this line: if METEOR_WAREHOUSE_DIR variable is not presented, it's set to $HOME/.meteor or Windows analogue.
The text was updated successfully, but these errors were encountered:
@tmeasday what is this line for?
I've looked into Meteor sources and found that in all places where this variable used, there will be no difference if we just remove this line: if
METEOR_WAREHOUSE_DIR
variable is not presented, it's set to$HOME/.meteor
or Windows analogue.The text was updated successfully, but these errors were encountered: