Refresh database only in runScript()
This commit is contained in:
parent
53181b026e
commit
0967c35ab6
|
@ -29,7 +29,7 @@ installAurDeps() {
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
if [ "${#aurPkgs[@]}" -gt 0 ]; then
|
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
|
sudo -u calbuilder git clone https://aur.archlinux.org/paru-bin.git
|
||||||
cd paru-bin; sudo -Hu calbuilder makepkg -si --noconfirm; cd ..
|
cd paru-bin; sudo -Hu calbuilder makepkg -si --noconfirm; cd ..
|
||||||
for aurPkg in "${aurPkgs[@]}"; do
|
for aurPkg in "${aurPkgs[@]}"; do
|
||||||
|
@ -66,7 +66,7 @@ printWarnings() {
|
||||||
}
|
}
|
||||||
|
|
||||||
namcapAnalysis() {
|
namcapAnalysis() {
|
||||||
pacman -Sy --noconfirm namcap
|
pacman -S --noconfirm namcap
|
||||||
mapfile -t warnings < <(namcap PKGBUILD)
|
mapfile -t warnings < <(namcap PKGBUILD)
|
||||||
printWarnings "PKGBUILD"
|
printWarnings "PKGBUILD"
|
||||||
pkgFile=$(sudo -u calbuilder makepkg --packagelist)
|
pkgFile=$(sudo -u calbuilder makepkg --packagelist)
|
||||||
|
@ -110,6 +110,7 @@ runScript() {
|
||||||
findArgs=("-not" "-path" "*.git*")
|
findArgs=("-not" "-path" "*.git*")
|
||||||
oldFiles=$(find -H "$PWD" "${findArgs[@]}")
|
oldFiles=$(find -H "$PWD" "${findArgs[@]}")
|
||||||
|
|
||||||
|
pacman -Sy
|
||||||
installAurDeps
|
installAurDeps
|
||||||
buildPackage
|
buildPackage
|
||||||
namcapAnalysis
|
namcapAnalysis
|
||||||
|
|
Loading…
Reference in New Issue