Update windows.go

This commit is contained in:
RPRX 2025-03-24 12:51:22 +00:00 committed by GitHub
parent 55c7874d5c
commit da7765959f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)