Skip to content

Commit

Permalink
Fix the install-linux fix (#22466)
Browse files Browse the repository at this point in the history
Follow-up fix to #22465, forgot my shell fundamentals!

Release Notes:

- N/A
  • Loading branch information
cole-miller authored Dec 28, 2024
1 parent a3dec64 commit 7903f4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/bundle-linux
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit 7903f4e

Please sign in to comment.