From 5858042321f915abaaa6ed17478d99655e73e944 Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Tue, 15 Feb 2022 15:28:39 -0800 Subject: [PATCH] Bump dasel version --- install-scripts/.local/bin/install-dasel-home | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install-scripts/.local/bin/install-dasel-home b/install-scripts/.local/bin/install-dasel-home index e11f0c3..b2a37e0 100755 --- a/install-scripts/.local/bin/install-dasel-home +++ b/install-scripts/.local/bin/install-dasel-home @@ -3,16 +3,16 @@ # shellcheck disable=SC1090 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" -get_arch () { +get_arch () ( case $(uname -m) in x86_64*) echo amd64;; *) >&2 echo "unsupported architecture: $(uname -m)"; exit 1;; esac -} +) APP=dasel -VERSION=${VERSION:-1.20.0} -DEST="${XDG_DATA_HOME}/apps/releases/${APP}" +VERSION=${VERSION:-1.22.1} +DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/TomWright/dasel/releases/download/v${VERSION}/dasel_$(get_os)_$(get_arch) mkdir_if_missing "${DEST}/${VERSION}"