From 74f3572482643e11fe7f54e42714ff4ad5fa19ba Mon Sep 17 00:00:00 2001 From: Vincent Tavernier Date: Tue, 26 Dec 2023 01:41:26 +0100 Subject: [PATCH] feat: update cocogitto to 6.0.1 --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index f408586..4919158 100755 --- a/install.sh +++ b/install.sh @@ -1,12 +1,12 @@ #!/bin/sh CUR_DIR=$(pwd) -VERSION=5.6.0 +VERSION=6.0.1 TAR="cocogitto-$VERSION-x86_64-unknown-linux-musl.tar.gz" BIN_DIR="$HOME/.local/bin" mkdir -p "$BIN_DIR" cd "$BIN_DIR" || exit curl -OL https://github.com/cocogitto/cocogitto/releases/download/"$VERSION"/"$TAR" -tar xfz $TAR +tar --strip-components=1 -xzf $TAR x86_64-unknown-linux-musl/cog cd "$CUR_DIR" || exit