From 59611f7e58b274bafce9d6fc15d5ee5266e2120f Mon Sep 17 00:00:00 2001 From: Ahmad Ansori Palembani Date: Sat, 20 Jul 2024 11:24:24 +0700 Subject: [PATCH] fix(script/bootstrap): Skip paru preview --- bootstrap | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bootstrap b/bootstrap index ba33dc7..3abd4fc 100755 --- a/bootstrap +++ b/bootstrap @@ -76,7 +76,10 @@ install_aur_package() { [ "$1" = "" ] && { echo "No AUR package candidate is specified, skipping..."; return; } # << - $AUR -S --noconfirm "$@" + case "$AUR" in + "paru" ) $AUR -S --noconfirm --skipreview "$@" + * ) $AUR -S --noconfirm "$@" + esac } # === Actual automation ===