From 7903f4ea584c0f52fc308739528a20f5f2515fe0 Mon Sep 17 00:00:00 2001 From: Cole Miller Date: Sat, 28 Dec 2024 11:50:29 -0500 Subject: [PATCH] Fix the install-linux fix (#22466) Follow-up fix to #22465, forgot my shell fundamentals! Release Notes: - N/A --- script/bundle-linux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bundle-linux b/script/bundle-linux index 5d7f329f4d..b59b73608b 100755 --- a/script/bundle-linux +++ b/script/bundle-linux @@ -72,7 +72,7 @@ objcopy --strip-debug "${target_dir}/${remote_server_triple}/release/remote_serv gzip "${target_dir}/${target_triple}/release/zed.dbg" gzip "${target_dir}/${remote_server_triple}/release/remote_server.dbg" -if [[ -n "${DIGITALOCEAN_SPACES_SECRET_KEY}" && -n "${DIGITALOCEAN_SPACES_ACCESS_KEY}" ]]; then +if [[ -n "${DIGITALOCEAN_SPACES_SECRET_KEY:-}" && -n "${DIGITALOCEAN_SPACES_ACCESS_KEY:-}" ]]; then upload_to_blob_store_public \ "zed-debug-symbols" \ "${target_dir}/${target_triple}/release/zed.dbg.gz" \