abra/tests/integration/common.sh

16 lines
318 B
Bash
Raw Normal View History

#!/bin/bash
set -e
function init() {
2022-01-24 16:16:37 +00:00
ABRA="$(pwd)/../../abra"
INSTALLER_URL="https://git.coopcloud.tech/coop-cloud/abra/raw/branch/main/scripts/installer/installer"
export PATH=$PATH:$HOME/.local/bin
echo "choosing $ABRA as abra command"
echo "choosing $INSTALLER_URL as abra installer url"
}
init "$@"