2021-09-20 16:00:55 +03:00
|
|
|
//go:build windows
|
2020-11-25 13:01:53 +02:00
|
|
|
// +build windows
|
|
|
|
|
|
|
|
package platform
|
|
|
|
|
|
|
|
import "path/filepath"
|
|
|
|
|
|
|
|
func ExpandEnv(s string) string {
|
|
|
|
// TODO
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func LineSeparator() string {
|
|
|
|
return "\r\n"
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetToolLocation(file string) string {
|
2023-10-29 01:21:57 +03:00
|
|
|
toolPath := NewEnvFlag(ToolLocation).GetValue(getExecutableDir)
|
2020-11-25 13:01:53 +02:00
|
|
|
return filepath.Join(toolPath, file+".exe")
|
|
|
|
}
|
|
|
|
|
2022-01-13 04:51:47 +02:00
|
|
|
// GetAssetLocation searches for `file` in the excutable dir
|
2020-11-25 13:01:53 +02:00
|
|
|
func GetAssetLocation(file string) string {
|
2023-10-29 01:21:57 +03:00
|
|
|
assetPath := NewEnvFlag(AssetLocation).GetValue(getExecutableDir)
|
2020-11-25 13:01:53 +02:00
|
|
|
return filepath.Join(assetPath, file)
|
|
|
|
}
|