Skip to content

Commit

Permalink
Fix every installation appending to terminal path (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
sciencewhiz authored Oct 14, 2024
1 parent 5647b8a commit 62f0b56
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ private async Task ConfigureVsCodeSettings()
else
{
var binPath = Path.Combine(homePath, "jdk", "bin");
if (!path.Contains(binPath))
if (!path.ToString().Contains(binPath))
{
path = binPath + path_seperator + path;
terminalEnv["PATH"] = path;
Expand Down

0 comments on commit 62f0b56

Please sign in to comment.