diff --git a/common/platform/windows.go b/common/platform/windows.go index 8f98814b..cb25a1ad 100644 --- a/common/platform/windows.go +++ b/common/platform/windows.go @@ -19,12 +19,13 @@ func GetToolLocation(file string) string { return filepath.Join(toolPath, file+".exe") } -// GetAssetLocation searches for `file` in the executable dir +// GetAssetLocation searches for `file` in the env dir and the executable dir func GetAssetLocation(file string) string { assetPath := NewEnvFlag(AssetLocation).GetValue(getExecutableDir) return filepath.Join(assetPath, file) } +// GetCertLocation searches for `file` in the env dir and the executable dir func GetCertLocation(file string) string { certPath := NewEnvFlag(CertLocation).GetValue(getExecutableDir) return filepath.Join(certPath, file)