This is an automated email from the ASF dual-hosted git repository. jongyoul pushed a commit to branch branch-0.11 in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/branch-0.11 by this push: new 4d3190cecf [HOTFIX] Fix gpg command 4d3190cecf is described below commit 4d3190cecf34c98377566bda4a74491d4f89b293 Author: Jongyoul Lee <jongy...@gmail.com> AuthorDate: Sat Jul 6 23:48:26 2024 +1000 [HOTFIX] Fix gpg command --- dev/create_release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/create_release.sh b/dev/create_release.sh index b50f09cb08..61f2c293ba 100755 --- a/dev/create_release.sh +++ b/dev/create_release.sh @@ -51,7 +51,7 @@ function make_source_package() { echo "Signing the source package" cd "${WORKING_DIR}" - echo "${GPG_PASSPHRASE}" | gpg --passphrase-fd 0 --armor \ + echo "${GPG_PASSPHRASE}" | gpg --batch --yes --passphrase-fd 0 --armor \ --output "zeppelin-${RELEASE_VERSION}.tgz.asc" \ --detach-sig "${WORKING_DIR}/zeppelin-${RELEASE_VERSION}.tgz" ${SHASUM} -a 512 "zeppelin-${RELEASE_VERSION}.tgz" > \ @@ -80,7 +80,7 @@ function make_binary_release() { ${TAR} -cvzf "zeppelin-${RELEASE_VERSION}-bin-${BIN_RELEASE_NAME}.tgz" "zeppelin-${RELEASE_VERSION}-bin-${BIN_RELEASE_NAME}" # sign bin package - echo "${GPG_PASSPHRASE}" | gpg --passphrase-fd 0 --armor \ + echo "${GPG_PASSPHRASE}" | gpg --batch --yes --passphrase-fd 0 --armor \ --output "zeppelin-${RELEASE_VERSION}-bin-${BIN_RELEASE_NAME}.tgz.asc" \ --detach-sig "zeppelin-${RELEASE_VERSION}-bin-${BIN_RELEASE_NAME}.tgz" ${SHASUM} -a 512 "zeppelin-${RELEASE_VERSION}-bin-${BIN_RELEASE_NAME}.tgz" > \