From aaba98d8ecba934369d15f55d55688d569ca8fbe Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Wed, 31 Jan 2024 19:22:58 -0700 Subject: [PATCH] Debug build (#7176) Release Notes: - N/A --- script/bundle | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/script/bundle b/script/bundle index 9c0dddbac4..d1fbeeb9a8 100755 --- a/script/bundle +++ b/script/bundle @@ -79,6 +79,11 @@ version_info=$(rustc --version --verbose) host_line=$(echo "$version_info" | grep host) local_target_triple=${host_line#*: } +if [ -z "$ZED_CLIENT_CHECKSUM_SEED" ]; then + echo "Missing ZED_CLIENT_CHECKSUM_SEED environment variable" + exit 1 +fi + if [ "$local_arch" = true ]; then echo "Building for local target only." cargo build ${build_flag} --package ${zed_crate}