2015-10-09 14:48:05 +00:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package platform
|
|
|
|
|
2017-11-11 21:29:00 +00:00
|
|
|
import "path/filepath"
|
|
|
|
|
2015-10-13 19:41:53 +00:00
|
|
|
func ExpandEnv(s string) string {
|
2015-10-09 14:48:05 +00:00
|
|
|
// TODO
|
|
|
|
return s
|
|
|
|
}
|
2015-10-13 19:41:53 +00:00
|
|
|
|
|
|
|
func LineSeparator() string {
|
|
|
|
return "\r\n"
|
|
|
|
}
|
2017-11-11 21:29:00 +00:00
|
|
|
|
|
|
|
func GetToolLocation(file string) string {
|
|
|
|
const name = "v2ray.location.tool"
|
|
|
|
toolPath := EnvFlag{Name: name, AltName: NormalizeEnvName(name)}.GetValue(getExecutableDir)
|
|
|
|
return filepath.Join(toolPath, file+".exe")
|
|
|
|
}
|