From cc24bfeb4c269f28dd66a0bd198587766c77e95d Mon Sep 17 00:00:00 2001 From: Matthew Saunders Brown Date: Mon, 3 Jun 2024 10:18:05 -0700 Subject: [PATCH] update version of dasel --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 92a96bd..3680b13 100755 --- a/install.sh +++ b/install.sh @@ -9,7 +9,7 @@ DEBIAN_FRONTEND=noninteractive apt-get -y install pip pip install certbot-dns-powerdns # Install dasel from binary. Used to convert json data to csv -wget --quiet --output-document=/usr/local/bin/dasel https://github.com/TomWright/dasel/releases/download/v2.5.0/dasel_linux_amd64 +wget --quiet --output-document=/usr/local/bin/dasel https://github.com/TomWright/dasel/releases/download/v2.7.0/dasel_linux_amd64 chmod 755 /usr/local/bin/dasel # one liner to automatically get latest version. could also be used to update existing install # curl -sSLf "$(curl -sSLf https://api.github.com/repos/tomwright/dasel/releases/latest | grep browser_download_url | grep linux_amd64 | grep -v .gz | cut -d\" -f 4)" -L -o /usr/local/bin/dasel && chmod +x /usr/local/bin/dasel