From bb483f44e22717e3691cfae28c14613dc833a164 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Wed, 15 Sep 2021 22:28:27 +0200 Subject: [PATCH] fix(linux): correctly check if the AppImage has been built (#843) --- check_tags.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/check_tags.sh b/check_tags.sh index e8e1351..f1144d3 100755 --- a/check_tags.sh +++ b/check_tags.sh @@ -130,6 +130,10 @@ if [ "$GITHUB_TOKEN" != "" ]; then echo "Building on Linux x64 because we have no TAR" export SHOULD_BUILD="yes" fi + if [[ -z $( contains "x86_64.AppImage" ) ]]; then + echo "Building on Linux x64 because we have no AppImage" + export SHOULD_BUILD="yes" + fi if [[ "$SHOULD_BUILD" != "yes" ]]; then echo "Already have all the Linux x64 builds" fi