summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhorus_arch2015-03-31 00:30:29 +0200
committerhorus_arch2015-03-31 00:30:29 +0200
commit75449899d64399dd1a0b9291aa86b39f8b9567af (patch)
tree310829b1bd818c0c829c74898ae5502be554ab26
parente55e4a280637c26fb49c15a73303ae56a2c5ec7d (diff)
downloadweb2irc-75449899d64399dd1a0b9291aa86b39f8b9567af.tar.gz
Fix small typo.
-rw-r--r--gitolite-webhook/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/gitolite-webhook/main.go b/gitolite-webhook/main.go
index 7d0fe5e..519dcb3 100644
--- a/gitolite-webhook/main.go
+++ b/gitolite-webhook/main.go
@@ -16,7 +16,7 @@ func main() {
hook := Webhook{}
hook.Target = ""
hook.Join = os.Getenv("JOIN")
- hook.Message = fmt.Sprintf("Update git repo '%s' to '%s' by %s. | Commit message: '%s' | Url: %s | Date: %s", os.Getenv("GL_REPO"), os.Getenv("REFNAME"), os.Getenv("GL_USER"), os.Getenv("COMMIT_MSG"), os.Getenv("REPO_URL"), os.Getenv("DATE"))
+ hook.Message = fmt.Sprintf("Update git repo '%s' on '%s' by %s. | Commit message: '%s' | Url: %s | Date: %s", os.Getenv("GL_REPO"), os.Getenv("REFNAME"), os.Getenv("GL_USER"), os.Getenv("COMMIT_MSG"), os.Getenv("REPO_URL"), os.Getenv("DATE"))
json, err := json.Marshal(hook)
if err != nil {