From 0967c35ab6c2046d9ae32dc8bfad437509f04358 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Sat, 2 Jul 2022 11:50:43 -0300 Subject: [PATCH] Refresh database only in runScript() --- pkgbuild.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgbuild.sh b/pkgbuild.sh index 4fcee67..4ad7af2 100755 --- a/pkgbuild.sh +++ b/pkgbuild.sh @@ -29,7 +29,7 @@ installAurDeps() { fi done if [ "${#aurPkgs[@]}" -gt 0 ]; then - pacman -Syu --noconfirm --needed git + pacman -Su --noconfirm --needed git sudo -u calbuilder git clone https://aur.archlinux.org/paru-bin.git cd paru-bin; sudo -Hu calbuilder makepkg -si --noconfirm; cd .. for aurPkg in "${aurPkgs[@]}"; do @@ -66,7 +66,7 @@ printWarnings() { } namcapAnalysis() { - pacman -Sy --noconfirm namcap + pacman -S --noconfirm namcap mapfile -t warnings < <(namcap PKGBUILD) printWarnings "PKGBUILD" pkgFile=$(sudo -u calbuilder makepkg --packagelist) @@ -110,6 +110,7 @@ runScript() { findArgs=("-not" "-path" "*.git*") oldFiles=$(find -H "$PWD" "${findArgs[@]}") + pacman -Sy installAurDeps buildPackage namcapAnalysis