summaryrefslogtreecommitdiffhomepage
path: root/scripts
diff options
context:
space:
mode:
authorAndrei Vagin <avagin@google.com>2019-09-17 17:24:39 -0700
committergVisor bot <gvisor-bot@google.com>2019-09-17 17:26:01 -0700
commitb63d56b0b4430de7273e3b759667a823927c0473 (patch)
tree74123fbe133fbcd2a2743a881da06642bca612b9 /scripts
parent60fe8719e172f76aa5cfd8cd80a35c3e648701a3 (diff)
scripts/build.sh: fix kokoro failure "KOKORO_BUILD_NIGHTLY: unbound variable"
PiperOrigin-RevId: 269690988
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build.sh b/scripts/build.sh
index d73eaee77..5021dda49 100755
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -47,7 +47,7 @@ install() {
# current date. If the current commit happens to correpond to a tag, then we
# will also move everything into a directory named after the given tag.
if [[ -v KOKORO_ARTIFACTS_DIR ]]; then
- if [[ "${KOKORO_BUILD_NIGHTLY}" == "true" ]]; then
+ if [[ "${KOKORO_BUILD_NIGHTLY:-false}" == "true" ]]; then
# The "latest" directory and current date.
stamp="$(date -Idate)"
install "${KOKORO_ARTIFACTS_DIR}/nightly/latest" \