fix(script/bootstrap): Skip paru preview
This commit is contained in:
parent
b13f4b707f
commit
59611f7e58
1 changed files with 4 additions and 1 deletions
|
@ -76,7 +76,10 @@ install_aur_package() {
|
||||||
[ "$1" = "" ] && { echo "No AUR package candidate is specified, skipping..."; return; }
|
[ "$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 ===
|
# === Actual automation ===
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue