diff --git a/dot_local/bin/executable_install-lego-home b/dot_local/bin/executable_install-lego-home index b5f77a3..87e18a9 100755 --- a/dot_local/bin/executable_install-lego-home +++ b/dot_local/bin/executable_install-lego-home @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=lego -VERSION=${VERSION:-v4.12.3} +VERSION=${VERSION:-v4.14.2} DEST=${XDG_DATA_HOME}/apps/releases/${APP} URL=https://github.com/go-acme/lego/releases/download/${VERSION}/lego_${VERSION}_$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-lego-system b/dot_local/bin/executable_install-lego-system index c0cbd62..70e936f 100755 --- a/dot_local/bin/executable_install-lego-system +++ b/dot_local/bin/executable_install-lego-system @@ -6,7 +6,7 @@ set -euo pipefail source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" APP=lego -VERSION=${VERSION:-v4.12.3} +VERSION=${VERSION:-v4.14.2} APPS_DIR=/usr/local/apps/${APP} URL=https://github.com/go-acme/lego/releases/download/${VERSION}/lego_${VERSION}_$(get_os)_$(get_arch).tar.gz diff --git a/dot_local/bin/executable_install-protoc-home b/dot_local/bin/executable_install-protoc-home index eb0a824..1265154 100755 --- a/dot_local/bin/executable_install-protoc-home +++ b/dot_local/bin/executable_install-protoc-home @@ -5,7 +5,7 @@ set -euo pipefail # shellcheck disable=SC1091 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" -VERSION=${VERSION:-23.3} +VERSION=${VERSION:-24.3} APP=protoc APPS_DIR=${XDG_DATA_HOME}/apps/releases/${APP} VER_DIR=${APPS_DIR}/${VERSION} diff --git a/dot_local/bin/executable_install-protoc-system b/dot_local/bin/executable_install-protoc-system index c34ed1b..b42d5b4 100755 --- a/dot_local/bin/executable_install-protoc-system +++ b/dot_local/bin/executable_install-protoc-system @@ -5,7 +5,7 @@ set -euo pipefail # shellcheck disable=SC1091 source "${XDG_DATA_HOME}/buddy-up/includes/utils.sh" -PROTOC_VERSION=${VERSION:-23.3} +PROTOC_VERSION=${VERSION:-24.3} PROTOC_ZIP=protoc-$PROTOC_VERSION-linux-x86_64.zip TMP_DIR=$(mktemp --directory) DEST_FILE=$TMP_DIR/$PROTOC_ZIP @@ -18,5 +18,3 @@ sudo unzip -o "$DEST_FILE" -d /usr/local 'include/*' sudo find /usr/local/include/google -type f -exec chmod 644 {} \; sudo find /usr/local/include/google -type d -exec chmod 755 {} \; rm -rfv "$TMP_DIR" - -main "${@}" diff --git a/dot_local/bin/executable_install-starship b/dot_local/bin/executable_install-starship index 2e3f674..e732aaa 100755 --- a/dot_local/bin/executable_install-starship +++ b/dot_local/bin/executable_install-starship @@ -11,7 +11,7 @@ function get_os () { } APP=starship -VERSION=${VERSION:-1.15.0} +VERSION=${VERSION:-1.16.0} DEST="${XDG_DATA_HOME}/apps/releases/${APP}" URL=https://github.com/starship/starship/releases/download/v${VERSION}/starship-$(uname -m)-$(get_os).tar.gz