From cd9a52abc1d647981ebaa5b49f95ca1fc4c33b15 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 9 Feb 2024 09:50:56 -0800 Subject: [PATCH] fix manual aur package extract now that they include debugs --- Dockerfile | 3 ++- Dockerfile.aarch64 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8e6cdbd..036532a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,7 +25,8 @@ RUN \ git clone https://aur.archlinux.org/${PACKAGE}.git && \ cd ${PACKAGE} && \ makepkg -sAci --skipinteg --noconfirm && \ - sudo -u root tar xf *pkg.tar.zst -C /buildout && \ + sudo rm -f ${PACKAGE}-debug*pkg.tar.zst && \ + sudo -u root tar xf ${PACKAGE}-*pkg.tar.zst -C /buildout && \ cd /tmp ;\ done diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 14bb079..4b36f4e 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -25,7 +25,8 @@ RUN \ git clone https://aur.archlinux.org/${PACKAGE}.git && \ cd ${PACKAGE} && \ makepkg -sAci --skipinteg --noconfirm && \ - sudo -u root tar xf *pkg.tar.xz -C /buildout && \ + sudo rm -f ${PACKAGE}-debug*pkg.tar.zst && \ + sudo -u root tar xf ${PACKAGE}-*pkg.tar.zst -C /buildout && \ cd /tmp ;\ done