Skip to content
This repository has been archived by the owner on Apr 8, 2020. It is now read-only.

Commit

Permalink
FIxing path separator to address #247 (#248)
Browse files Browse the repository at this point in the history
* Correcting path separator to ;

* Using the proper API from System.IO to get path separator
  • Loading branch information
aaronpowell authored and SteveSandersonMS committed Aug 8, 2016
1 parent 7052fa0 commit 2a6465b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public void Dispose()
var existingNodePath = Environment.GetEnvironmentVariable("NODE_PATH") ?? string.Empty;
if (existingNodePath != string.Empty)
{
existingNodePath += ":";
existingNodePath += Path.PathSeparator;
}

var nodePathValue = existingNodePath + Path.Combine(projectPath, "node_modules");
Expand Down

0 comments on commit 2a6465b

Please sign in to comment.