abra speaks the new list format. Also new patch
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-09-06 13:12:37 +02:00
parent a515198b9f
commit f1c1f25741
3 changed files with 15 additions and 3 deletions

4
abra
View File

@ -5,7 +5,7 @@
GIT_URL="https://git.coopcloud.tech/coop-cloud/"
ABRA_APPS_URL="https://apps.coopcloud.tech"
ABRA_DIR="${ABRA_DIR:-$HOME/.abra}"
ABRA_VERSION="10.0.1"
ABRA_VERSION="10.0.4"
ABRA_BACKUP_DIR="${ABRA_BACKUP_DIR:-$ABRA_DIR/backups}"
ABRA_VENDOR_DIR="$ABRA_DIR/vendor"
ABRA_APPS_JSON="${ABRA_DIR}/apps.json"
@ -697,7 +697,7 @@ get_recipe_versions() {
if [ "$recipe_json" = "null" ]; then
declare -a RECIPE_VERSIONS
else
mapfile -t RECIPE_VERSIONS < <(echo "$recipe_json" | $JQ -r ".versions | keys | .[]" - | sort)
mapfile -t RECIPE_VERSIONS < <(echo "$recipe_json" | $JQ -r ".versions | keys | .[]")
fi
}