BUILD: scripts: fix typo in announce-release error message

It used to say the tag already existed instead of the opposite.
This commit is contained in:
Willy Tarreau 2017-03-27 19:36:45 +02:00
parent 6a375ef730
commit 827385fb7c
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ if [ -z "$NEW" ]; then
fi fi
if ! git show-ref --tags "v$NEW" >/dev/null; then 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 fi
if [ -z "$OLD" ]; then if [ -z "$OLD" ]; then