From 0a3f1a3f714c2483dd1caec821e05390edb34a37 Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Tue, 31 Oct 2023 21:51:34 -0400 Subject: [PATCH] RiiTag-RPC: correct release name due to upstream breakage upstream decided to change an already existing release and change the release asset name and format https://github.com/RiiConnect24/RiiTag-RPC/issues/38 caught by our github actions auto-update bot https://github.com/Botspot/pi-apps/pull/2476 --- .github/workflows/updates/RiiTag-RPC.sh | 2 +- apps/RiiTag-RPC/install-64 | 7 +++---- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/updates/RiiTag-RPC.sh b/.github/workflows/updates/RiiTag-RPC.sh index f56898db16..77fab1897b 100755 --- a/.github/workflows/updates/RiiTag-RPC.sh +++ b/.github/workflows/updates/RiiTag-RPC.sh @@ -1,6 +1,6 @@ #!/bin/bash webVer=$(get_release_raw RiiConnect24/riitag-rpc) -arm64_url="https://github.com/riiconnect24/riitag-rpc/releases/download/${webVer}/rpi-4b-aarch64.zip" +arm64_url="https://github.com/riiconnect24/riitag-rpc/releases/download/${webVer}/RiiTag-RPC_Rpi4B" source $GITHUB_WORKSPACE/.github/workflows/update_github_script.sh diff --git a/apps/RiiTag-RPC/install-64 b/apps/RiiTag-RPC/install-64 index 551bdfc4b5..181c18dfbc 100755 --- a/apps/RiiTag-RPC/install-64 +++ b/apps/RiiTag-RPC/install-64 @@ -6,7 +6,6 @@ version=v1.3.4 cd /tmp || error "Could not move to /tmp directory" rm -f rpi-4b-aarch64.zip -wget "https://github.com/RiiConnect24/RiiTag-RPC/releases/download/${version}/rpi-4b-aarch64.zip" || error "Could not download riitag-rpc release" -unzip rpi-4b-aarch64.zip -sudo chmod a+x riitag-rpc -sudo mv riitag-rpc /usr/local/bin/riitag-rpc || error "Could not install riitag-rpc" +wget "https://github.com/RiiConnect24/RiiTag-RPC/releases/download/${version}/RiiTag-RPC_Rpi4B" || error "Could not download riitag-rpc release" +sudo chmod a+x RiiTag-RPC_Rpi4B +sudo mv RiiTag-RPC_Rpi4B /usr/local/bin/riitag-rpc || error "Could not install riitag-rpc"