$another_installer_fix
continuous-integration/drone/push Build is failing Details

This commit is contained in:
3wc 2021-08-11 02:05:05 +02:00
parent e92fa554d4
commit 1c820c70fb
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.2"
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"