From 5add49ac89058e78f58626b01c63c8ef95e0c7b1 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 10 Jun 2024 00:13:52 +0900 Subject: [PATCH] updated base-devel installation --- install-scripts/00-base.sh | 2 +- install.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/install-scripts/00-base.sh b/install-scripts/00-base.sh index 8aa0f65..d0bb994 100755 --- a/install-scripts/00-base.sh +++ b/install-scripts/00-base.sh @@ -16,7 +16,7 @@ LOG="Install-Logs/install-$(date +%d-%H%M%S)_base.log" printf "\n%s - Installing base-devel \n" "${NOTE}" for PKG1 in "${base[@]}"; do - install_package_pacman "$PKG1" | tee -a "$LOG" + sudo pacman -S --noconfirm "$PKG1" | tee -a "$LOG" done clear \ No newline at end of file diff --git a/install.sh b/install.sh index 30b481d..098020e 100755 --- a/install.sh +++ b/install.sh @@ -177,6 +177,7 @@ sleep 0.5 execute_script "00-base.sh" sleep 0.5 execute_script "pacman.sh" +sleep 0.5 # Execute AUR helper script based on user choice if [ "$aur_helper" == "paru" ]; then execute_script "paru.sh"