From a40bced3f303d24e0bc9a81d2f1e63e8d75fd2e7 Mon Sep 17 00:00:00 2001 From: Yury Kossakovsky Date: Mon, 12 May 2025 12:31:27 -0600 Subject: [PATCH] Add path to apply_update.sh in update script - Updated the update.sh script to define the path for the apply_update.sh script, ensuring it can be referenced correctly during the update process. - This change enhances the script's functionality by establishing a clear link to the new update handling script introduced in the previous commit. --- scripts/update.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/update.sh b/scripts/update.sh index d57ca95..7d2a3cc 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -12,6 +12,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" # Project root directory (one level up from scripts) PROJECT_ROOT="$( cd "$SCRIPT_DIR/.." &> /dev/null && pwd )" # Path to the apply_update.sh script +APPLY_UPDATE_SCRIPT="$SCRIPT_DIR/apply_update.sh" # Check if apply update script exists if [ ! -f "$APPLY_UPDATE_SCRIPT" ]; then