From 55c4acfad9b2ec377e7d2e95d3a5454b69f8891d Mon Sep 17 00:00:00 2001 From: Makrennel Date: Thu, 6 Jun 2024 00:07:30 +0100 Subject: [PATCH] Fix calling dependencies after sourcing --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index ba026cfce..9b1339d8c 100755 --- a/install.sh +++ b/install.sh @@ -120,8 +120,8 @@ install-local-pkgbuild() { x pushd $location source ./PKGBUILD - x $AUR_HELPER -S $installflags --asdeps $depends - x makepkg -si + x $AUR_HELPER -S $installflags --asdeps "${depends[@]}" + x makepkg -si --noconfirm x popd }