Browse code

Don't fail build if 9front VM is unavailable.

Andrew Alderwick authored on 12/11/2022 10:53:20
Showing 1 changed files
... ...
@@ -84,4 +84,6 @@ tasks:
84 84
         acurl -fsS "https://pages.sr.ht/publish/${SITE}" -Fcontent=@out.tar.gz
85 85
         acurl -fsS "https://pages.sr.ht/publish/${SITE}" -Fcontent=@out.tar.gz -Fprotocol=GEMINI
86 86
     - build-9front: |
87
-        ssh 9front "$(cd uxn && git rev-parse HEAD)"
87
+        if ssh 9front true; then
88
+            ssh 9front "$(cd uxn && git rev-parse HEAD)"
89
+        fi