mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-22 17:47:53 +00:00
* Correcting path separator to ; * Using the proper API from System.IO to get path separator
This commit is contained in:
committed by
Steve Sanderson
parent
7052fa0ad2
commit
2a6465b27a
@@ -126,7 +126,7 @@ If you haven't yet installed node-inspector, you can do so as follows:
|
|||||||
var existingNodePath = Environment.GetEnvironmentVariable("NODE_PATH") ?? string.Empty;
|
var existingNodePath = Environment.GetEnvironmentVariable("NODE_PATH") ?? string.Empty;
|
||||||
if (existingNodePath != string.Empty)
|
if (existingNodePath != string.Empty)
|
||||||
{
|
{
|
||||||
existingNodePath += ":";
|
existingNodePath += Path.PathSeparator;
|
||||||
}
|
}
|
||||||
|
|
||||||
var nodePathValue = existingNodePath + Path.Combine(projectPath, "node_modules");
|
var nodePathValue = existingNodePath + Path.Combine(projectPath, "node_modules");
|
||||||
|
|||||||
Reference in New Issue
Block a user