You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by ps...@apache.org on 2019/09/15 19:17:07 UTC

[hbase-operator-tools] branch master updated: HBASE-23025 Do not quote GPG command (#33)

This is an automated email from the ASF dual-hosted git repository.

psomogyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hbase-operator-tools.git


The following commit(s) were added to refs/heads/master by this push:
     new 9d1d7f1  HBASE-23025 Do not quote GPG command (#33)
9d1d7f1 is described below

commit 9d1d7f10936f63a80beb552d470d4d75e643f77e
Author: Peter Somogyi <ps...@apache.org>
AuthorDate: Sun Sep 15 21:17:03 2019 +0200

    HBASE-23025 Do not quote GPG command (#33)
    
    Signed-off-by: Sean Busbey <bu...@apache.org>
---
 dev-support/create-release/do-release-docker.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-support/create-release/do-release-docker.sh b/dev-support/create-release/do-release-docker.sh
index 723b8f0..9346f4f 100755
--- a/dev-support/create-release/do-release-docker.sh
+++ b/dev-support/create-release/do-release-docker.sh
@@ -115,7 +115,7 @@ done
 
 GPG_KEY_FILE="$WORKDIR/gpg.key"
 fcreate_secure "$GPG_KEY_FILE"
-"$GPG" --passphrase "$GPG_PASSPHRASE" --export-secret-key --armor "$GPG_KEY" > "$GPG_KEY_FILE"
+$GPG --passphrase "$GPG_PASSPHRASE" --export-secret-key --armor "$GPG_KEY" > "$GPG_KEY_FILE"
 
 run_silent "Building hbase-rm image with tag $IMGTAG..." "docker-build.log" \
   docker build -t "hbase-rm:$IMGTAG" --build-arg UID=$UID "$SELF/hbase-rm"