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 41e67ed commit 72c6525Copy full SHA for 72c6525
install.go
@@ -23,7 +23,7 @@ func InstallKclvm(installRoot string) error {
23
return err
24
}
25
binPath := filepath.Join(installRoot, "bin")
26
- os.Setenv("PATH", os.Getenv("PATH")+":"+binPath)
+ os.Setenv("PATH", os.Getenv("PATH")+string(os.PathListSeparator)+binPath)
27
28
scripts := map[string][]byte{
29
"kcl": kclScript,
0 commit comments