From 3ad51ad6cf0ecb4bf2376c010cfcaf65f2256f5d Mon Sep 17 00:00:00 2001 From: John DiSanti Date: Wed, 19 Jan 2022 15:21:39 -0800 Subject: [PATCH] Fix canary target path (#1091) --- tools/ci-cdk/canary-lambda/build-bundle.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ci-cdk/canary-lambda/build-bundle.sh b/tools/ci-cdk/canary-lambda/build-bundle.sh index ae8d92473..b608a5700 100755 --- a/tools/ci-cdk/canary-lambda/build-bundle.sh +++ b/tools/ci-cdk/canary-lambda/build-bundle.sh @@ -4,7 +4,7 @@ # SPDX-License-Identifier: Apache-2.0. # -set -e +set -ex if [[ $# -ne 1 ]]; then echo "Usage: $0 " @@ -16,7 +16,7 @@ cd `dirname $0` ./write-cargo-toml.py --sdk-version ${SDK_VERSION} cargo build --release --target=x86_64-unknown-linux-musl -TARGET_PATH="$(git rev-parse --show-toplevel)/target/x86_64-unknown-linux-musl/release" +TARGET_PATH="$(git rev-parse --show-toplevel)/tools/target/x86_64-unknown-linux-musl/release" pushd "${TARGET_PATH}" &>/dev/null BIN_NAME="bootstrap" -- GitLab