From 78ebb8da17cbfdfb7fb5acdcc6fa222a3f1dc958 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Thu, 2 May 2024 09:32:02 -0400 Subject: [PATCH] Update jq to 1.7.1 See: https://github.com/jqlang/jq/releases --- functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.sh b/functions.sh index cab89d6..dcea59e 100644 --- a/functions.sh +++ b/functions.sh @@ -19,7 +19,7 @@ function install_jq() { # jq 1.6 DEBIAN_FRONTEND=noninteractive #sudo apt-get update && sudo apt-get -q -y install jq - curl -sL https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64 -o jq + curl -sL https://github.com/stedolan/jq/releases/download/jq-1.7.1/jq-linux64 -o jq sudo mv jq /usr/bin/jq sudo chmod +x /usr/bin/jq }