From c5415b490a86e2570d56ed124059ea3c9745bcdf Mon Sep 17 00:00:00 2001 From: "Suman D." <107029526+SumanSynth@users.noreply.github.com> Date: Sun, 10 Nov 2024 18:34:33 +0530 Subject: [PATCH] Update update.sh version update to v1.0.2 --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index bfd2d28..1353f12 100644 --- a/update.sh +++ b/update.sh @@ -12,10 +12,10 @@ arch=$(uname -m) if [[ "$arch" == "x86_64" ]]; then echo "AMD architecture detected." - wget https://github.com/SumanSynth/sentinel-agent-setup/releases/download/v1.0.1/sentinel-agent-linux-amd64 + wget https://github.com/SumanSynth/sentinel-agent-setup/releases/download/v1.0.2/sentinel-agent-linux-amd64 elif [[ "$arch" == "arm64" || "$arch" == "aarch64" ]]; then echo "ARM architecture detected." - wget https://github.com/SumanSynth/sentinel-agent-setup/releases/download/v1.0.1/sentinel-agent-linux-arm64 + wget https://github.com/SumanSynth/sentinel-agent-setup/releases/download/v1.0.2/sentinel-agent-linux-arm64 sudo mv sentinel-agent-linux-arm64 sentinel-agent-linux-amd64 else echo "Unknown architecture: $arch"