Skip to content

Commit e96facc

Browse files
sreggHeshamMegid
authored andcommitted
Fixed curl command in Instabug_dsym_upload.sh (#240)
Added missing os=ios param
1 parent 5fa5218 commit e96facc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/Instabug.framework/InstabugResources.bundle/Instabug_dsym_upload.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ echo "Instabug: Compressing dSYM file..."
136136
# Upload dSYM
137137
echo "Instabug: Uploading dSYM file..."
138138
ENDPOINT="https://api.instabug.com/api/sdk/v3/symbols_files"
139-
STATUS=$(curl "${ENDPOINT}" --write-out %{http_code} --silent --output /dev/null -F symbols_file=@"${DSYM_PATH_ZIP}" -F application_token="${APP_TOKEN}")
139+
STATUS=$(curl "${ENDPOINT}" --write-out %{http_code} --silent --output /dev/null -F os=ios -F symbols_file=@"${DSYM_PATH_ZIP}" -F application_token="${APP_TOKEN}")
140140
if [ $STATUS -ne 200 ]; then
141141
echo "Instabug: err: dSYM archive not succesfully uploaded."
142142
echo "Instabug: deleting temporary dSYM archive..."

0 commit comments

Comments
 (0)