From 6004a272915769efaec357628782fdb4ca533eee Mon Sep 17 00:00:00 2001 From: Buddy Sandidge Date: Wed, 18 Oct 2023 12:46:53 -0700 Subject: [PATCH] Add install doctl script --- dot_local/bin/executable_install-doctl | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 dot_local/bin/executable_install-doctl diff --git a/dot_local/bin/executable_install-doctl b/dot_local/bin/executable_install-doctl new file mode 100755 index 0000000..4ffa89c --- /dev/null +++ b/dot_local/bin/executable_install-doctl @@ -0,0 +1,20 @@ +#!/usr/bin/env bash + +set -euo pipefail + +# shellcheck disable=SC1091 +source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" + +APP=doctl +VERSION=${VERSION:-1.98.1} +DEST=${XDG_DATA_HOME}/apps/releases/${APP} + +main() ( + URL=https://github.com/digitalocean/doctl/releases/download/v${VERSION}/doctl-${VERSION}-$(get_os)-$(get_arch).tar.gz + + extract_tarball "${URL}" "${DEST}/${VERSION}" + set_current_link "${DEST}" "${VERSION}" + set_link "${XDG_BIN_HOME}/${APP}" "${DEST}" "${APP}" +) + +main "${@}"