This is an automated email from the ASF dual-hosted git repository.
richard pushed a commit to branch 1.0.0
in repository https://gitbox.apache.org/repos/asf/brooklyn-dist.git
The following commit(s) were added to refs/heads/1.0.0 by this push:
new 6c5799a Fix inverted condition in make-release-artifacts.sh
6c5799a is described below
commit 6c5799a5b74e7b4f5c799630538563206a63759e
Author: Richard Downer <[email protected]>
AuthorDate: Tue Jan 28 12:51:38 2020 +0000
Fix inverted condition in make-release-artifacts.sh
---
release/make-release-artifacts.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/release/make-release-artifacts.sh
b/release/make-release-artifacts.sh
index 00e9a7a..e6254b7 100755
--- a/release/make-release-artifacts.sh
+++ b/release/make-release-artifacts.sh
@@ -156,7 +156,7 @@ fi
# Determine which GPG command to use
GPG_COMMAND=$((which gpg >> /dev/null && echo gpg) || (which gpg2 >> /dev/null
&& echo gpg2))
-if [ ! -z "${GPG_COMMAND}" ]; then
+if [ -z "${GPG_COMMAND}" ]; then
echo "gpg or gpg2 must be installed, exiting"
exit
fi