Try to identify dSYMs by UUID not channel (#28268)
This should make it possible to more reliably symbolicate crash reports from nightly, and from users with pending auto-updates. Release Notes: - N/A --------- Co-authored-by: Ben Kunkle <ben.kunkle@gmail.com>
This commit is contained in:
parent
862d0c07ca
commit
f03efeda73
3 changed files with 17 additions and 7 deletions
|
@ -24,10 +24,10 @@ function upload_to_blob_store_with_acl
|
|||
|
||||
function upload_to_blob_store_public
|
||||
{
|
||||
upload_to_blob_store_with_acl $1 $2 $3 "x-amz-acl:public-read"
|
||||
upload_to_blob_store_with_acl "$1" "$2" "$3" "x-amz-acl:public-read"
|
||||
}
|
||||
|
||||
function upload_to_blob_store
|
||||
{
|
||||
upload_to_blob_store_with_acl $1 $2 $3 "x-amz-acl:private"
|
||||
upload_to_blob_store_with_acl "$1" "$2" "$3" "x-amz-acl:private"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue