From 50555b88443485caf5b711029fb606fcc9bf9364 Mon Sep 17 00:00:00 2001 From: Cleo Date: Tue, 9 Jun 2026 20:45:48 +0200 Subject: [PATCH] fix failing build when the archive has errors --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c0d4b5f..64c65b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN set -x \ p7zip-full \ && cd ${TMPDIR} \ && 7z x Archipelago.tar.gz \ - && 7z x *.tar \ + && 7z x *.tar || true \ && mkdir ${SERVERDIR} \ && mkdir ${SAVEDIR} \ && mv Archipelago/ArchipelagoServer ${SERVERDIR} \