summaryrefslogtreecommitdiffhomepage
path: root/kokoro/gcp_ubuntu
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2018-05-10 12:41:29 -0700
committerShentubot <shentubot@google.com>2018-05-10 12:42:17 -0700
commit9d91c44d775cb204049a80405f3a2589f706795a (patch)
treecbce01cec2654b2562dea08428cf65d236677804 /kokoro/gcp_ubuntu
parent5a509c47a20e0b81b95bb4932e8b19dfc6a402e2 (diff)
Fix nightly release upload path.
The "nightly/latest" was duplicated. PiperOrigin-RevId: 196156453 Change-Id: Iccac65d870f3eb44c4bd97bcbed5cc436cb1d3c9
Diffstat (limited to 'kokoro/gcp_ubuntu')
-rwxr-xr-xkokoro/gcp_ubuntu/run_build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/kokoro/gcp_ubuntu/run_build.sh b/kokoro/gcp_ubuntu/run_build.sh
index 43b01a1ff..bc1fe433c 100755
--- a/kokoro/gcp_ubuntu/run_build.sh
+++ b/kokoro/gcp_ubuntu/run_build.sh
@@ -33,8 +33,8 @@ bazel build //runsc
# Move the runsc binary into "latest" directory, and also a directory with the
# current date.
-latest_dir="${KOKORO_ARTIFACTS_DIR}"/nightly/latest
-today_dir="${KOKORO_ARTIFACTS_DIR}"/nightly/"$(date -Idate)"
+latest_dir="${KOKORO_ARTIFACTS_DIR}"/latest
+today_dir="${KOKORO_ARTIFACTS_DIR}"/"$(date -Idate)"
mkdir -p "${latest_dir}" "${today_dir}"
cp bazel-bin/runsc/linux_amd64_pure_stripped/runsc "${latest_dir}"
cp bazel-bin/runsc/linux_amd64_pure_stripped/runsc "${today_dir}"