gitignore git bundles

This commit is contained in:
2022-06-30 06:38:05 +02:00
parent 0d9076d5ed
commit 45c48b39bc
2 changed files with 6 additions and 8 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
/venv/
/*.bundle

View File

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