Skip to content

Commit

Permalink
Update check_tags.sh
Browse files Browse the repository at this point in the history
Fixes armhf tag check
  • Loading branch information
stripedpajamas authored Dec 21, 2019
1 parent 26a5bfc commit c440844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check_tags.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if [ "$GITHUB_TOKEN" != "" ]; then
fi
elif [[ $BUILDARCH == "arm" ]]; then
HAVE_ARM_DEB=$(echo $VSCODIUM_ASSETS | jq 'map(.name) | contains(["armhf.deb"])')
HAVE_ARM_TAR=$(echo $VSCODIUM_ASSETS | jq --arg suffix "armhf-$LATEST_MS_TAG.tar.gz" 'map(.name) | contains([$suffix])')
HAVE_ARM_TAR=$(echo $VSCODIUM_ASSETS | jq --arg suffix "arm-$LATEST_MS_TAG.tar.gz" 'map(.name) | contains([$suffix])')
if [[ "$HAVE_ARM_DEB" != "true" ]]; then
echo "Building on Linux arm because we have no DEB"
export SHOULD_BUILD="yes"
Expand Down

0 comments on commit c440844

Please sign in to comment.