From 45c48b39bcf774f397eaa9b106e78d94516a4758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20K=C3=B6rber?= Date: Thu, 30 Jun 2022 06:38:05 +0200 Subject: [PATCH] gitignore git bundles --- .gitignore | 1 + playbook.yml | 13 +++++-------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 9f21b54..d62f8af 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /venv/ +/*.bundle diff --git a/playbook.yml b/playbook.yml index d13e3e3..91fbf84 100644 --- a/playbook.yml +++ b/playbook.yml @@ -101,9 +101,6 @@ name: - base-devel - git - - cargo - - asp - - bat become: true - name: create build user on arch @@ -138,7 +135,7 @@ shell: | set -o errexit - if pacman -Qi paru >/dev/null 2>&1; then + if pacman -Qi paru-bin >/dev/null 2>&1; then exit 100 fi exit 0 @@ -156,9 +153,9 @@ mkdir -p /tmp/paru-build cd /tmp/paru-build - curl -L -O https://aur.archlinux.org/cgit/aur.git/snapshot/paru.tar.gz - tar xvf paru.tar.gz - cd paru + curl -L -O https://aur.archlinux.org/cgit/aur.git/snapshot/paru-bin.tar.gz + tar xvf paru-bin.tar.gz + cd paru-bin makepkg args: executable: /bin/bash @@ -170,7 +167,7 @@ shell: | set -o errexit - pacman --noconfirm -U /tmp/paru-build/paru/paru-*.pkg.tar.zst + pacman --noconfirm -U /tmp/paru-build/paru-bin/paru-bin-*.pkg.tar.zst rm -rf /tmp/paru-build args: executable: /bin/bash