From ce9570e7dd90fc860be88c4c28aa8aa081a006f3 Mon Sep 17 00:00:00 2001 From: oppiliappan Date: Tue, 21 Jul 2026 17:00:31 +0100 Subject: [PATCH] *: fmt Signed-off-by: oppiliappan --- knotmirror/git.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/knotmirror/git.go b/knotmirror/git.go index 4764db99..5540fa41 100644 --- a/knotmirror/git.go +++ b/knotmirror/git.go @@ -79,7 +79,7 @@ func (c *CliGitMirrorManager) clone(ctx context.Context, path, url string) error } return fmt.Errorf("running 'git clone --mirror %s': %w\n%s", url, err, msg) } - writeCommitGraph(ctx, path, 30 * time.Second) + writeCommitGraph(ctx, path, 30*time.Second) return nil } @@ -132,7 +132,7 @@ func (c *CliGitMirrorManager) fetch(ctx context.Context, path, url string) error } } - writeCommitGraph(ctx, path, 3 * time.Second) + writeCommitGraph(ctx, path, 3*time.Second) return nil } -- 2.51.2