1
0
This commit is contained in:
Jeff LANCE 2024-04-11 00:04:33 +02:00
parent 5c97f5d824
commit d1e0b7582d
3 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ packages=(
for package in ${packages[@]}; do for package in ${packages[@]}; do
if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then
inf "installing ${package}..." inf "installing ${package}..."
yay -S --noconfirm --quiet $package yay -S --noconfirm --removemake --quiet $package
fi fi
done done

View File

@ -27,13 +27,13 @@ log "Begin LVim installation"
## Update system ## Update system
inf "updating system..." inf "updating system..."
yay -Syu --noconfirm --quiet yay -Syu --noconfirm --removemake --quiet
## Install packages ## Install packages
for package in ${packages[@]}; do for package in ${packages[@]}; do
if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then
inf "installing ${package}..." inf "installing ${package}..."
yay -S --noconfirm --quiet $package yay -S --noconfirm --removemake --quiet $package
fi fi
done done

View File

@ -33,13 +33,13 @@ log "Begin Zsh installation"
## Update system ## Update system
inf "updating system..." inf "updating system..."
yay -Syu --noconfirm --quiet yay -Syu --noconfirm --removemake --quiet
## install packages ## install packages
for package in ${packages[@]}; do for package in ${packages[@]}; do
if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then
inf "installing ${package}..." inf "installing ${package}..."
yay -S --noconfirm --quiet $package yay -S --noconfirm --removemake --quiet $package
fi fi
done done