From 560fa5c150f97cd37368e6c33e500258976808ed Mon Sep 17 00:00:00 2001 From: MrJack <36191829+biagiopietro@users.noreply.github.com> Date: Tue, 8 Sep 2026 16:28:33 +0200 Subject: [PATCH] Removed string type from existingVCSRepo to make linter happy Signed-off-by: MrJack <36191829+biagiopietro@users.noreply.github.com> --- internal/plugin/installer/vcs_installer.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/plugin/installer/vcs_installer.go b/internal/plugin/installer/vcs_installer.go index f194faa30..cb656e9f4 100644 --- a/internal/plugin/installer/vcs_installer.go +++ b/internal/plugin/installer/vcs_installer.go @@ -38,7 +38,7 @@ type VCSInstaller struct { base } -func existingVCSRepo(location string, version string) (Installer, error) { +func existingVCSRepo(location, version string) (Installer, error) { repo, err := vcs.NewRepo("", location) if err != nil { return nil, err