Closed yakimant closed 3 years ago
While uploading a dSYM file without ipa - is it possible to append dSYMs to existing version, rather, then creating a new one.
version
In my shell scripts I do:
curl -s -X PUT -F "dsym=@dSYM.zip" -H "X-HockeyAppToken: ${TOKEN}" https://rink.hockeyapp.net/api/2/apps/${APP_ID}/app_versions/${ID}
than there is an ${ID} for needed some version.
${ID}
And:
curl -s -F "dsym=@dSYM.zip" -H "X-HockeyAppToken: ${TOKEN}" https://rink.hockeyapp.net/api/2/apps/${APP_ID}/app_versions/upload
than there is no ${ID} found for some version.
Thanks!
While uploading a dSYM file without ipa - is it possible to append dSYMs to existing
version
, rather, then creating a new one.In my shell scripts I do:
than there is an
${ID}
for needed someversion
.And:
than there is no
${ID}
found for someversion
.Thanks!