From e06371437f58171a36628b87ea7e25447c111cc2 Mon Sep 17 00:00:00 2001 From: dcflachs Date: Wed, 31 Dec 2025 15:38:46 -0500 Subject: [PATCH] Download heyu .tar instead of .zip --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8cecec..af2fd70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,10 +15,8 @@ RUN \ echo "**** get heyu source ****" && \ mkdir -p /build && \ cd /build && \ - curl -LsSo heyu.zip https://github.com/HeyuX10Automation/heyu/archive/${GIT_HASH}.zip && \ - unzip heyu.zip && \ - mv heyu-* heyu && \ - cd heyu && \ + curl -LsSo heyu.tar.gz https://github.com/HeyuX10Automation/heyu/archive/${GIT_HASH}.tar.gz && \ + tar --strip-components=1 -xf heyu.tar.gz && \ echo "**** building heyu ****" && \ ./configure --sysconfdir=/config/heyu/ && \ make && \