2021-09-20 13:00:55 +00:00
|
|
|
//go:build windows
|
2020-11-25 11:01:53 +00: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-28 22:21:57 +00:00
|
|
|
toolPath := NewEnvFlag(ToolLocation).GetValue(getExecutableDir)
|
2020-11-25 11:01:53 +00:00
|
|
|
return filepath.Join(toolPath, file+".exe")
|
|
|
|
}
|
|
|
|
|
2024-07-11 22:20:06 +00:00
|
|
|
// GetAssetLocation searches for `file` in the executable dir
|
2020-11-25 11:01:53 +00:00
|
|
|
func GetAssetLocation(file string) string {
|
2023-10-28 22:21:57 +00:00
|
|
|
assetPath := NewEnvFlag(AssetLocation).GetValue(getExecutableDir)
|
2020-11-25 11:01:53 +00:00
|
|
|
return filepath.Join(assetPath, file)
|
|
|
|
}
|