From 2c2540df489f3b56c17222280aee6ca3fd13ed24 Mon Sep 17 00:00:00 2001 From: KM4ACK Date: Thu, 2 Feb 2023 09:51:17 -0600 Subject: [PATCH] chirp fix #493 --- functions/additional.function | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/functions/additional.function b/functions/additional.function index 32c2afd..177a6cb 100644 --- a/functions/additional.function +++ b/functions/additional.function @@ -416,6 +416,7 @@ sudo make install CHIRP() { #sudo apt install -y chirp + #sample link - https://github.com/goldstar611/chirp-appimage/releases/download/20230202/Chirp-next-20230202-armhf.AppImage cd ${DIR} || return sudo apt install libfuse2 @@ -424,16 +425,16 @@ CHIRP() { #determine if 32/64 bit and set download link accordingly. issue #382 if [ `getconf LONG_BIT` = '32' ]; then - LINK="https://github.com/goldstar611/chirp-appimage/releases/download/$CHIRPDATE/Chirp-daily-$CHIRPDATE-armhf.AppImage" + LINK="https://github.com/goldstar611/chirp-appimage/releases/download/$CHIRPDATE/Chirp-next-$CHIRPDATE-armhf.AppImage" else - LINK="https://github.com/goldstar611/chirp-appimage/releases/download/$CHIRPDATE/Chirp-daily-$CHIRPDATE-aarch64.AppImage" + LINK="https://github.com/goldstar611/chirp-appimage/releases/download/$CHIRPDATE/Chirp-next-$CHIRPDATE-aarch64.AppImage" fi wget $LINK - CHIRP=$(ls | grep Chirp-daily) + CHIRP=$(ls | grep Chirp-next) sudo mv $CHIRP /usr/local/bin/chirp sudo chmod +x /usr/local/bin/chirp