]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
BUILD: scripts: fix typo in announce-release error message
authorWilly Tarreau <w@1wt.eu>
Mon, 27 Mar 2017 17:36:45 +0000 (19:36 +0200)
committerWilly Tarreau <w@1wt.eu>
Mon, 27 Mar 2017 17:36:45 +0000 (19:36 +0200)
It used to say the tag already existed instead of the opposite.

scripts/announce-release

index d70c33cc869ff99ef6116097c4025f1ac221e03b..c4045ae6778b1905df656a2c18bafe44ec9a86f7 100755 (executable)
@@ -79,7 +79,7 @@ if [ -z "$NEW" ]; then
 fi
 
 if ! git show-ref --tags "v$NEW" >/dev/null; then
-       die "git tag v$NEW already exist, did you create the release ?"
+       die "git tag v$NEW doesn't exist, did you create the release ?"
 fi
 
 if [ -z "$OLD" ]; then