Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Mar 13, 2024
1 parent 975deed commit 9becaf4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/OneWare.Core/Services/EnvironmentService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,7 @@ private void UpdateEnvironment()
_ => ':'
};

var paths = string.Join(pathSeparator, _paths);

Console.WriteLine(InitialPath);
var paths = string.Join(pathSeparator, _paths.Select(x => x.Value));

Environment.SetEnvironmentVariable("PATH", $"{paths}{pathSeparator}{InitialPath}");
}
Expand Down

0 comments on commit 9becaf4

Please sign in to comment.