Skip to content

Commit 64b4323

Browse files
authored
Improve Kokoro release process (#3608)
* Delete jar_signing.sh * Update release.sh
1 parent 76763eb commit 64b4323

File tree

2 files changed

+5
-67
lines changed

2 files changed

+5
-67
lines changed

kokoro/ubuntu/jar_signing.sh

Lines changed: 0 additions & 62 deletions
This file was deleted.

kokoro/ubuntu/release.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ gcloud components install app-engine-java --quiet
1818
echo "OAUTH_CLIENT_ID: ${OAUTH_CLIENT_ID}"
1919
echo "OAUTH_CLIENT_SECRET: ${OAUTH_CLIENT_SECRET}"
2020
echo "FIRELOG_API_KEY: ${FIRELOG_API_KEY}"
21-
echo "PRODUCT_VERSION_SUFFIX: "${PRODUCT_VERSION_SUFFIX}
21+
echo "PRODUCT_VERSION_SUFFIX: ${PRODUCT_VERSION_SUFFIX}"
2222

2323
# Exit if undefined (zero-length).
24-
test -n "${OAUTH_CLIENT_ID}"
25-
test -n "${OAUTH_CLIENT_SECRET}"
26-
test -n "${FIRELOG_API_KEY}"
24+
[[ -n "${OAUTH_CLIENT_ID}" ]]
25+
[[ -n "${OAUTH_CLIENT_SECRET}" ]]
26+
[[ -n "${FIRELOG_API_KEY}" ]]
2727

28-
cd git/google-cloud-eclipse
28+
cd github/google-cloud-eclipse
2929

3030
# A few notes on the Maven command:
3131
# - Need to unset `TMPDIR` for `xvfb-run` due to a bug:

0 commit comments

Comments
 (0)