From 3b8f2ab95144a5df4ac5a20f89f4f60900973ba2 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 15 Aug 2026 10:07:47 -0400 Subject: [PATCH] update github api parsing to use jq --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ff30c4..5d80648 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +30,7 @@ RUN \ echo "**** install audacity ****" && \ if [ -z ${AUDACITY_VERSION+x} ]; then \ AUDACITY_VERSION=$(curl -sX GET "https://api.github.com/repos/audacity/audacity/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]' | sed 's|^Audacity-||'); \ + | jq -r '.tag_name' | sed 's|^Audacity-||'); \ fi && \ cd /tmp && \ curl -o \