From 47be7d9b8dd31e138f756f944afb021167d8966e Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 15 Aug 2026 11:31:25 -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 c26693f..d75b2e8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -43,7 +43,7 @@ RUN \ echo "**** install winegui ****" && \ if [ -z ${WINEGUI_VERSION+x} ]; then \ WINEGUI_VERSION=$(curl -sX GET "https://api.github.com/repos/winegui/WineGUI/releases/latest" \ - | awk '/tag_name/{print $4;exit}' FS='[""]'); \ + | jq -r '.tag_name'); \ fi && \ curl -o \ /tmp/winegui.deb -L \