From a839ccf6cdc03472263630976d73888647cdef84 Mon Sep 17 00:00:00 2001 From: ExistingPerson <164225044+ExistingPerson08@users.noreply.github.com> Date: Fri, 26 Jun 2026 22:11:36 +0200 Subject: [PATCH] Fix --- build_files/install-bazaar.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build_files/install-bazaar.sh b/build_files/install-bazaar.sh index 8546c3e..c1e0716 100755 --- a/build_files/install-bazaar.sh +++ b/build_files/install-bazaar.sh @@ -2,6 +2,8 @@ _pkgname="bazaar" REPO_URL="https://github.com/kolunmi/bazaar.git" BUILD_DIR="build" +pacman -S --noconfirm meson + git clone "$REPO_URL" bazaar cd bazaar PKGVER=$(git describe --long --tags --abbrev=7 | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g') @@ -15,3 +17,4 @@ meson setup "bazaar" "$BUILD_DIR" \ meson compile -C "$BUILD_DIR" meson install -C "$BUILD_DIR" rm "$BUILD_DIR" +pacman -R --noconfirm meson