Adds message for when Mongo server is not starting on Windows.

This commit is contained in:
filipenevola
2020-06-08 13:23:28 -04:00
parent 518f515090
commit d2e1d69425

View File

@@ -938,6 +938,10 @@ _.extend(MRp, {
"Looks like you are out of free disk space under .meteor/local.";
} else if (explanation) {
message += "\n" + explanation.longText;
} else if (process.platform === 'win32') {
message += "\n\n" +
"Check how to troubleshoot here " +
"https://docs.meteor.com/windows.html#cant-start-mongo-server";
}
if (explanation && explanation.symbol === 'EXIT_NET_ERROR') {