From 2eba0bfeecff99557cb42fdb42faf61cb2958e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Lipt=C3=A1k?= Date: Sun, 24 Dec 2017 12:06:52 -0500 Subject: [PATCH] Correct typos --- scripts/release.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/release.go b/scripts/release.go index 2aab812c6..94aaadc15 100644 --- a/scripts/release.go +++ b/scripts/release.go @@ -129,7 +129,7 @@ func preCheckUncommittedChanges() { changes := uncommittedChanges() if len(changes) > 0 { - die("uncommited changes found:\n%s\n", changes) + die("uncommitted changes found:\n%s\n", changes) } } @@ -191,7 +191,7 @@ func generateFiles() { changes := uncommittedChanges("doc") if len(changes) > 0 { - msg("comitting manpages and auto-completion") + msg("committing manpages and auto-completion") run("git", "commit", "-m", "Update manpages and auto-completion", "doc") } } @@ -203,7 +203,7 @@ func updateVersion() { } if len(uncommittedChanges("VERSION")) > 0 { - msg("comitting file VERSION") + msg("committing file VERSION") run("git", "commit", "-m", fmt.Sprintf("Add VERSION for %v", opts.Version), "VERSION") } }