From a00acb3b60992e7a5df7da6130fdc72dc9ae298a Mon Sep 17 00:00:00 2001 From: healthy-pod Date: Thu, 6 Oct 2022 15:10:56 -0700 Subject: [PATCH] build: fix acceptance artifacts path This code change fixes the incorrect artifacts path for acceptance introduced in #88966. Release note: None Epic: none --- build/teamcity/cockroach/ci/tests/acceptance.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/teamcity/cockroach/ci/tests/acceptance.sh b/build/teamcity/cockroach/ci/tests/acceptance.sh index 687743d4090d..ea73d240f1d5 100755 --- a/build/teamcity/cockroach/ci/tests/acceptance.sh +++ b/build/teamcity/cockroach/ci/tests/acceptance.sh @@ -13,7 +13,7 @@ else fi tc_start_block "Build cockroach" -build_script='bazel build --config $1 --config ci //pkg/cmd/cockroach-short && cp $(bazel info bazel-bin --config $1 --config ci)/pkg/cmd/cockroach-short/cockroach-short_/cockroach-short artifacts/cockroach && chmod a+w artifacts/cockroach' +build_script='bazel build --config $1 --config ci //pkg/cmd/cockroach-short && cp $(bazel info bazel-bin --config $1 --config ci)/pkg/cmd/cockroach-short/cockroach-short_/cockroach-short /artifacts/cockroach && chmod a+w /artifacts/cockroach' run_bazel /usr/bin/bash -c "$build_script" -- "$CROSSLINUX_CONFIG" tc_end_block "Build cockroach"