From 6d36f0f11dd12b2e574e2d6892c6462c9ccef4d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nemanja=20Zbilji=C4=87?= Date: Mon, 1 Jan 2024 10:55:22 +0100 Subject: [PATCH] style: format code --- cmd/gitexec.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/gitexec.go b/cmd/gitexec.go index 89062e5..da460c2 100644 --- a/cmd/gitexec.go +++ b/cmd/gitexec.go @@ -39,7 +39,7 @@ func gitRepoPathGc(repoPath string) ([]byte, error) { return out, nil } -func gitRepoReset(repoPath string, commit string) ([]byte, error) { +func gitRepoReset(repoPath, commit string) ([]byte, error) { out, err := gitexec.Reset(&gitexec.ResetOptions{ CmdDir: repoPath, Hard: true,