diff --git a/scripts/prerequisites.sh b/scripts/prerequisites.sh new file mode 100755 index 0000000..91e4fd0 --- /dev/null +++ b/scripts/prerequisites.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +# Get the directory of the current script +SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +# Source the master script +source "$SCRIPT_DIR/install.sh" + +log_message "Installation started for prerequisites section" +print_info "Starting prerequisites setup..." + + +run_command "sudo pacman -Syyu --noconfirm" "Update package database and upgrade packages"