diff --git a/home/.chezmoiscripts/run_once_after_10-install-packages.sh.tmpl b/home/.chezmoiscripts/run_once_after_10-install-packages.sh.tmpl index c1d73d4..2c231e6 100644 --- a/home/.chezmoiscripts/run_once_after_10-install-packages.sh.tmpl +++ b/home/.chezmoiscripts/run_once_after_10-install-packages.sh.tmpl @@ -58,7 +58,7 @@ packages=( for package in ${packages[@]}; do if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then inf "installing ${package}..." - yay -S --noconfirm --quiet $package + yay -S --noconfirm --removemake --quiet $package fi done diff --git a/home/.chezmoiscripts/run_once_after_30-install-nvim.sh.tmpl b/home/.chezmoiscripts/run_once_after_30-install-nvim.sh.tmpl index e76cf14..d538185 100644 --- a/home/.chezmoiscripts/run_once_after_30-install-nvim.sh.tmpl +++ b/home/.chezmoiscripts/run_once_after_30-install-nvim.sh.tmpl @@ -27,13 +27,13 @@ log "Begin LVim installation" ## Update system inf "updating system..." - yay -Syu --noconfirm --quiet + yay -Syu --noconfirm --removemake --quiet ## Install packages for package in ${packages[@]}; do if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then inf "installing ${package}..." - yay -S --noconfirm --quiet $package + yay -S --noconfirm --removemake --quiet $package fi done diff --git a/home/.chezmoiscripts/run_once_after_40-install-shell.sh.tmpl b/home/.chezmoiscripts/run_once_after_40-install-shell.sh.tmpl index 56cc331..b9b6647 100644 --- a/home/.chezmoiscripts/run_once_after_40-install-shell.sh.tmpl +++ b/home/.chezmoiscripts/run_once_after_40-install-shell.sh.tmpl @@ -33,13 +33,13 @@ log "Begin Zsh installation" ## Update system inf "updating system..." - yay -Syu --noconfirm --quiet + yay -Syu --noconfirm --removemake --quiet ## install packages for package in ${packages[@]}; do if [ "$(yay -Qq $package 2> /dev/null)" != $package ]; then inf "installing ${package}..." - yay -S --noconfirm --quiet $package + yay -S --noconfirm --removemake --quiet $package fi done