Overwrite gzip output without prompting in bundling scripts (#23340)
Release Notes: - N/A
This commit is contained in:
parent
711dc21eb2
commit
ac8220bb2e
2 changed files with 6 additions and 6 deletions
|
@ -206,7 +206,7 @@ function prepare_binaries() {
|
|||
rm -f target/${architecture}/${target_dir}/Zed.dwarf.gz
|
||||
|
||||
echo "Gzipping dSYMs for $architecture"
|
||||
gzip target/${architecture}/${target_dir}/Zed.dwarf
|
||||
gzip -f target/${architecture}/${target_dir}/Zed.dwarf
|
||||
|
||||
echo "Uploading dSYMs for $architecture"
|
||||
upload_to_blob_store_public \
|
||||
|
@ -381,6 +381,6 @@ else
|
|||
|
||||
sign_binary "target/x86_64-apple-darwin/release/remote_server"
|
||||
sign_binary "target/aarch64-apple-darwin/release/remote_server"
|
||||
gzip --stdout --best target/x86_64-apple-darwin/release/remote_server > target/zed-remote-server-macos-x86_64.gz
|
||||
gzip --stdout --best target/aarch64-apple-darwin/release/remote_server > target/zed-remote-server-macos-aarch64.gz
|
||||
gzip -f --stdout --best target/x86_64-apple-darwin/release/remote_server > target/zed-remote-server-macos-x86_64.gz
|
||||
gzip -f --stdout --best target/aarch64-apple-darwin/release/remote_server > target/zed-remote-server-macos-aarch64.gz
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue