From fdcf524964a359309fb96599473b08f4d2692d30 Mon Sep 17 00:00:00 2001 From: Gaurav Bankar Date: Sun, 4 Aug 2024 18:02:26 +0530 Subject: [PATCH] testing basic ops --- scripts/prerequisites.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 scripts/prerequisites.sh 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"