From da7765959f67846d75072fe611e6dca411ce0961 Mon Sep 17 00:00:00 2001 From: RPRX <63339210+RPRX@users.noreply.github.com> Date: Mon, 24 Mar 2025 12:51:22 +0000 Subject: [PATCH] Update windows.go --- common/platform/windows.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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)