fix(ci): more linter fixes

This commit is contained in:
Simon Cornet 2025-04-03 11:21:00 +02:00
commit ac69db2a5b
2 changed files with 3 additions and 3 deletions

View file

@ -127,7 +127,7 @@ func pullRepository(repoName string, repoDestination string) {
remoteCmd := exec.Command("git", "-C", repoDestination, "remote", "show")
remoteOutput, err := remoteCmd.CombinedOutput()
if err != nil {
return "", fmt.Errorf("finding remote: %v\n", err)
return "", fmt.Errorf("finding remote: %v", err)
}
logger.Print("Finding remote for repository: "+repoName+" at "+repoDestination, nil)