aboutsummaryrefslogtreecommitdiff
path: root/internal/db/update.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/update.go')
-rw-r--r--internal/db/update.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/update.go b/internal/db/update.go
index 6555a479..e8fc41ed 100644
--- a/internal/db/update.go
+++ b/internal/db/update.go
@@ -67,7 +67,7 @@ func PushUpdate(opts PushUpdateOptions) (err error) {
gitUpdate := exec.Command("git", "update-server-info")
gitUpdate.Dir = repoPath
if err = gitUpdate.Run(); err != nil {
- return fmt.Errorf("Fail to call 'git update-server-info': %v", err)
+ return fmt.Errorf("run 'git update-server-info': %v", err)
}
gitRepo, err := git.OpenRepository(repoPath)