Compare commits

...

3 Commits

Author SHA1 Message Date
3wc
1c820c70fb $another_installer_fix 2021-08-11 02:05:05 +02:00
3wc
e92fa554d4 Properly fix abra upgrade 2021-08-11 01:54:48 +02:00
3wc
6ac14f55ca Bump version in installer 2021-08-11 01:48:06 +02:00
2 changed files with 3 additions and 2 deletions

2
abra
View File

@ -2655,7 +2655,7 @@ sub_upgrade() {
if [[ "$abra___dev" == "true" ]]; then
curl https://install.abra.coopcloud.tech | bash -s -- --dev --no-deps
else
curl https://install.abra.coopcloud.tech | bash --no-deps
curl https://install.abra.coopcloud.tech | bash -s -- --no-deps
fi
}

View File

@ -2,7 +2,7 @@
# shellcheck disable=SC2154,SC2034
ABRA_VERSION="10.0.1"
ABRA_VERSION="10.0.3"
GIT_URL="https://git.coopcloud.tech/coop-cloud/abra"
ABRA_SRC="$GIT_URL/raw/tag/$ABRA_VERSION/abra"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
@ -176,6 +176,7 @@ function install_requirements {
function install_abra_release {
mkdir -p "$HOME/.local/bin"
set -x
curl "$ABRA_SRC" > "$HOME/.local/bin/abra"
chmod +x "$HOME/.local/bin/abra"
echo "abra installed to $HOME/.local/bin/abra"