From 351491f84c5efc1f5e970395e7215f051e7c176c Mon Sep 17 00:00:00 2001 From: theofficialgman <28281419+theofficialgman@users.noreply.github.com> Date: Sat, 9 Mar 2024 19:43:21 -0500 Subject: [PATCH] RiiTag-RPC: update to 1.3.5 upstream instability https://github.com/RiiConnect24/RiiTag-RPC/issues/43 partial revert of https://github.com/Botspot/pi-apps/commit/0a3f1a3f714c2483dd1caec821e05390edb34a37 --- .github/workflows/updates/RiiTag-RPC.sh | 2 +- apps/RiiTag-RPC/install-64 | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/updates/RiiTag-RPC.sh b/.github/workflows/updates/RiiTag-RPC.sh index 77fab1897b..f56898db16 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}/RiiTag-RPC_Rpi4B" +arm64_url="https://github.com/riiconnect24/riitag-rpc/releases/download/${webVer}/rpi-4b-aarch64.zip" source $GITHUB_WORKSPACE/.github/workflows/update_github_script.sh diff --git a/apps/RiiTag-RPC/install-64 b/apps/RiiTag-RPC/install-64 index 181c18dfbc..a0e9082b51 100755 --- a/apps/RiiTag-RPC/install-64 +++ b/apps/RiiTag-RPC/install-64 @@ -1,11 +1,12 @@ #!/bin/bash -version=v1.3.4 +version=v1.3.5 "${DIRECTORY}/manage" install-if-not-installed ArmCord || error "Failed to install dependency: ArmCord" 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}/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" +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"