소스 검색

fix(linux): correctly check if the AppImage has been built (#843)

Baptiste Augrain 3 년 전
부모
커밋
bb483f44e2
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      check_tags.sh

+ 4 - 0
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