mirror of https://github.com/grpc/grpc-java.git
buildscripts: avoid unbound variable error (#4197)
This commit is contained in:
parent
4369e8cd9a
commit
7fd22080e9
|
|
@ -40,7 +40,7 @@ cd ../helloworld
|
||||||
|
|
||||||
# Skip APK size and dex count comparisons for non-PR builds
|
# Skip APK size and dex count comparisons for non-PR builds
|
||||||
|
|
||||||
if [[ -z "$KOKORO_GITHUB_PULL_REQUEST_COMMIT" ]]; then
|
if [[ -z "${KOKORO_GITHUB_PULL_REQUEST_COMMIT:-}" ]]; then
|
||||||
echo "Skipping APK size and dex count"
|
echo "Skipping APK size and dex count"
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue