bugfixes
This commit is contained in:
@@ -37,9 +37,9 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
##########################
|
||||
# Helper functions
|
||||
##########################
|
||||
install_packages() { sudo pacman -Sy; sudo pacman -S --noconfirm --needed "$1"; }
|
||||
is_package_installed() { pacman -Qi "$1" &>/dev/null; }
|
||||
remove_packages() { sudo pacman -Rs --noconfirm "$1"; }
|
||||
install_packages() { sudo pacman -Sy; sudo pacman -S --noconfirm --needed "$@"; }
|
||||
is_package_installed() { pacman -Qi "$@" &>/dev/null; }
|
||||
remove_packages() { sudo pacman -Rs --noconfirm "$@"; }
|
||||
|
||||
say_yellow "Starting minimal setup..."
|
||||
|
||||
|
||||
Reference in New Issue
Block a user