From 93229ad5b18292955d49e3e66fd3b26e4d81ad60 Mon Sep 17 00:00:00 2001 From: VetheonGames Date: Fri, 24 May 2024 09:17:09 -0600 Subject: [PATCH] Add in banner at start for advertising --- InitMate.sh | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/InitMate.sh b/InitMate.sh index 7cca37b..6a24535 100644 --- a/InitMate.sh +++ b/InitMate.sh @@ -2,6 +2,17 @@ LOG_FILE="$(dirname "$0")/setup.log" +# ASCII Art Banner +cat << "EOF" + _____ _ _ __ __ _ +|_ _| (_) | | \/ | | | + | | _ __ _| |_| \ / | __ _| |_ ___ + | | | '_ \| | __| |\/| |/ _` | __/ _ \ + _| |_| | | | | |_| | | | (_| | || __/ +|_____|_| |_|_|\__|_| |_|\__,_|\__\___| + By PixelRidge Softworks +EOF + # Log function log() { echo "$1" | tee -a "$LOG_FILE" @@ -27,13 +38,13 @@ check_for_updates() { if [ "$LOCAL" != "$REMOTE" ]; then log "Updates available. Pulling the latest changes..." git pull - log "InitMate updated. Please rerun." + log "Script updated. Please rerun the script." exit 0 else log "No updates available." fi else - log "This is not a Git repository. Skipping update check." + log "This script is not a Git repository. Skipping update check." fi }