From a4e472ad787cb2d0abc253b3b544d12e5ffd9871 Mon Sep 17 00:00:00 2001 From: dazedanon Date: Mon, 30 Jun 2025 18:27:35 -0500 Subject: [PATCH] Update patch.sh --- patch.sh | 27 ++------------------------- 1 file changed, 2 insertions(+), 25 deletions(-) diff --git a/patch.sh b/patch.sh index 491a7d2..18d10a5 100644 --- a/patch.sh +++ b/patch.sh @@ -30,10 +30,6 @@ echo "Config file path: $(pwd)/$CONFIG_FILE" # Read configuration from file . "$(pwd)/$CONFIG_FILE" -# Get the latest hash -echo "Getting latest commit SHA hash" -latest_patch_sha=$(curl -s "https://gitgud.io/api/v4/projects/$username%2F$repo/repository/branches/$branch" | jq -r '.commit.id') - download_extract() { # Download zip file echo "Downloading latest patch..." @@ -49,26 +45,7 @@ download_extract() { echo "Cleaning up..." rm repo.zip rm -rf "$repo-$branch" - rm -f latest_patch_sha.txt - - # Store latest SHA for next check - echo "$latest_patch_sha" > previous_patch_sha.txt } -# Check if previous_patch_sha.txt exists -if [ ! -f previous_patch_sha.txt ]; then - echo "Previous SHA hash not found!" - echo "Assuming first time patching..." - download_extract -else - # Read the stored SHA from previous check - previous_patch_sha=$(cat previous_patch_sha.txt) - - # Compare trimmed SHAs - if [ "$latest_patch_sha" != "$previous_patch_sha" ]; then - echo "Update found! Patching..." - download_extract - else - echo "Patch is up to date." - fi -fi \ No newline at end of file +# Download and Patch Files +download_extract