Release patch fix
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-04-07 21:00:08 +02:00
parent 8f2fadb3c4
commit 35f553ae5a
Signed by: decentral1se
GPG Key ID: 92DAD76BD9567B8A
3 changed files with 6 additions and 2 deletions

View File

@ -9,6 +9,10 @@
# abra x.x.x (UNRELEASED)
# abra 0.7.1 (2021-04-07)
- Fix installation script development installs ([8f2fadb3c](https://git.autonomic.zone/coop-cloud/abra/commit/8f2fadb3c43c5915520f5ea531ea3815c2ba8531))
# abra 0.7.0 (2021-04-07)
- Add `--force` to the `deploy` command to allow overriding deployment logic ([#105](https://git.autonomic.zone/coop-cloud/abra/issues/105))

2
abra
View File

@ -2,7 +2,7 @@
GIT_URL="https://git.autonomic.zone/coop-cloud/"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
ABRA_VERSION="0.7.0"
ABRA_VERSION="0.7.1"
ABRA_BACKUP_DIR="${ABRA_BACKUP_DIR:-$ABRA_DIR/backups}"
ABRA_VENDOR_DIR="$ABRA_DIR/vendor"
ABRA_APPS_JSON="${ABRA_DIR}/apps.json"

View File

@ -1,6 +1,6 @@
#!/bin/bash
ABRA_VERSION="0.7.0"
ABRA_VERSION="0.7.1"
GIT_URL="https://git.autonomic.zone/coop-cloud/abra"
ABRA_SRC="$GIT_URL/raw/tag/$ABRA_VERSION/abra"
ABRA_DIR="${ABRA_DIR:+$HOME/.abra/}"