diff --git a/common/platform/others.go b/common/platform/others.go index 3ebf0d6d..a405ac48 100644 --- a/common/platform/others.go +++ b/common/platform/others.go @@ -21,7 +21,7 @@ func GetToolLocation(file string) string { return filepath.Join(toolPath, file) } -// GetAssetLocation searches for `file` in certain locations +// GetAssetLocation searches for `file` in the env dir, the executable dir, and certain locations func GetAssetLocation(file string) string { assetPath := NewEnvFlag(AssetLocation).GetValue(getExecutableDir) defPath := filepath.Join(assetPath, file) @@ -43,6 +43,7 @@ func GetAssetLocation(file string) string { return defPath } +// 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)