fix manual aur package extract now that they include debugs

This commit is contained in:
thelamer 2024-02-09 09:50:56 -08:00
parent b7413dab31
commit cd9a52abc1
2 changed files with 4 additions and 2 deletions

View File

@ -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

View File

@ -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