From: Willy Tarreau Date: Mon, 27 Mar 2017 17:36:45 +0000 (+0200) Subject: BUILD: scripts: fix typo in announce-release error message X-Git-Tag: v1.8-dev1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=827385fb7c2b537153123ca2ea14b51b1b9fc770;p=thirdparty%2Fhaproxy.git BUILD: scripts: fix typo in announce-release error message It used to say the tag already existed instead of the opposite. --- diff --git a/scripts/announce-release b/scripts/announce-release index d70c33cc86..c4045ae677 100755 --- a/scripts/announce-release +++ b/scripts/announce-release @@ -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