From 4d87c7ff94e5c87add2fe303d3c771702c3c4f64 Mon Sep 17 00:00:00 2001 From: VetheonGames Date: Mon, 8 Jan 2024 18:02:12 -0700 Subject: [PATCH] fix missing updater_url --- allpac/install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/allpac/install.sh b/allpac/install.sh index 543c70f..d1bfedc 100644 --- a/allpac/install.sh +++ b/allpac/install.sh @@ -103,6 +103,7 @@ echo "Building binary..." go build -o ~/.allpac/bin/allpac || { echo "Failed to build binary. Exiting."; exit 1; } echo "Downloading updater script..." +updater_url="https://git.pixelridgesoftworks.com/PixelRidge-Softworks/Installers/raw/branch/main/allpac/update.sh" wget -O ~/.allpac/bin/allpac-updater.sh "$updater_url" || { echo "Failed to download updater script. Exiting."; exit 1; } echo "Setting updater script permissions..."