From 762d12b61ea970c51e0fbbba41aa30cbea062233 Mon Sep 17 00:00:00 2001 From: 3wc <3wc.git@doesthisthing.work> Date: Sun, 18 Apr 2021 03:43:03 +0200 Subject: [PATCH] More consistent debugging output --- abra | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/abra b/abra index 37c9418..f477fb8 100755 --- a/abra +++ b/abra @@ -849,7 +849,7 @@ load_instance() { esac ENV_FILE="${ENV_FILES[0]}" - debug "Selected ENV_FILE $ENV_FILE" + debug "ENV_FILE=$ENV_FILE" if [ ! -f "$ENV_FILE" ]; then error "Can't open ENV_FILE '$ENV_FILE'" @@ -861,7 +861,7 @@ load_instance() { SERVER="${PARTS[-2]}" export STACK_NAME="${APP//./_}" - debug "Using ${STACK_NAME} as the STACK_NAME var" + debug "STACK_NAME=${STACK_NAME}" } load_instance_env() { @@ -879,7 +879,7 @@ load_instance_env() { APP_DIR="$ABRA_DIR/apps/$TYPE" export DOCKER_CONTEXT="$SERVER" - info "Setting DOCKER_CONTEXT=$DOCKER_CONTEXT" + info "DOCKER_CONTEXT=$DOCKER_CONTEXT" export DOMAIN }