diff --git a/CHANGELOG.md b/CHANGELOG.md index a8cbaa06..e65cbc39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# abra 0.1.1 (2020-09-22) + +- Add installer script ([#9](https://git.autonomic.zone/autonomic-cooperative/abra/issues/9)) + # abra 0.1.0 (2020-09-22) - Initial pre-alpha release diff --git a/installer b/installer new file mode 100755 index 00000000..2b7d4956 --- /dev/null +++ b/installer @@ -0,0 +1,18 @@ +#!/bin/bash + +ABRA_VERSION="0.1.0" +ABRA_SRC="https://git.autonomic.zone/autonomic-cooperative/abra/raw/tag/$ABRA_VERSION/abra" + +function install_abra { + mkdir -p "$HOME/.local/bin" + curl "$ABRA_SRC" > "$HOME/.local/bin/abra" + chmod +x "$HOME/.local/bin/abra" + echo "abra installed to $HOME/.loca/bin/abra" +} + +function run_installation { + install_abra +} + +run_installation +exit 0