Manage PATH on Windows, Mac, and Linux with various Shells
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

25 lines
401 B

// +build windows
package main
import (
"git.rootprojects.org/root/pathman/winpath"
)
var pathstore = "[winpath] "
func addPath(p string) (bool, error) {
return winpath.Add(p)
}
func removePath(p string) (bool, error) {
return winpath.Remove(p)
}
func listPaths() ([]string, error) {
return winpath.Paths()
}
func indexOfPath(cur []string, p string) int {
return winpath.IndexOf(cur, p)
}