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.
This commit is contained in:
Yury Kossakovsky
2025-05-12 12:31:27 -06:00
parent d6f3522ca7
commit a40bced3f3

View File

@@ -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