aboutsummaryrefslogtreecommitdiffstats
path: root/modules/git/repo_commitgraph.go
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git/repo_commitgraph.go')
-rw-r--r--modules/git/repo_commitgraph.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/git/repo_commitgraph.go b/modules/git/repo_commitgraph.go
index 5549c92591..075b59ad06 100644
--- a/modules/git/repo_commitgraph.go
+++ b/modules/git/repo_commitgraph.go
@@ -13,7 +13,7 @@ import (
// this requires git v2.18 to be installed
func WriteCommitGraph(ctx context.Context, repoPath string) error {
if CheckGitVersionAtLeast("2.18") == nil {
- if _, err := NewCommand(ctx, "commit-graph", "write").RunInDir(repoPath); err != nil {
+ if _, _, err := NewCommand(ctx, "commit-graph", "write").RunStdString(&RunOpts{Dir: repoPath}); err != nil {
return fmt.Errorf("unable to write commit-graph for '%s' : %w", repoPath, err)
}
}