We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7052fa0 commit 2a6465bCopy full SHA for 2a6465b
src/Microsoft.AspNetCore.NodeServices/HostingModels/OutOfProcessNodeInstance.cs
@@ -126,7 +126,7 @@ protected virtual ProcessStartInfo PrepareNodeProcessStartInfo(
126
var existingNodePath = Environment.GetEnvironmentVariable("NODE_PATH") ?? string.Empty;
127
if (existingNodePath != string.Empty)
128
{
129
- existingNodePath += ":";
+ existingNodePath += Path.PathSeparator;
130
}
131
132
var nodePathValue = existingNodePath + Path.Combine(projectPath, "node_modules");
0 commit comments