1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-1319 Protocol | Enhancement | MW 0.26.0 (#3196)

This commit is contained in:
Evgenii Kozlov 2023-05-23 01:13:28 +02:00 committed by uburoiubu
parent e3af70f7a0
commit 6df9bf11ee
No known key found for this signature in database
GPG key ID: C8FB80E0A595FBB6
3 changed files with 21 additions and 2 deletions

View file

@ -27,7 +27,7 @@ version=`curl -H "Authorization: token $TOKEN" -H "Accept: application/vnd.githu
tag=`echo $version | jq ".tag_name"`
asset_id=`echo $version | jq ".assets | map(select(.name | match(\"android_lib_\";\"i\")))[0].id"`
if [ "$asset_id" = "" ]; then
if [ "$asset_id" = "null" ]; then
echo "ERROR: version not found"
exit 1
fi;