From 59e54504fe33592645040ff718f632e22c91ed73 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Tue, 8 Sep 2020 08:49:27 +0200 Subject: [PATCH] Format out some whitespaces --- abra | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/abra b/abra index f8c5654..b4b5b73 100755 --- a/abra +++ b/abra @@ -5,7 +5,7 @@ if [ -z $STACK_NAME ] || [ -z $STACK_NAME ]; then echo "ERROR: STACK_NAME must be set (e.g. export STACK_NAME=my_cool_app)" exit fi - + sub_help(){ echo "Usage: $PROGRAM_NAME [options]" echo "" @@ -34,7 +34,7 @@ sub_secret_generate(){ sub_service_run(){ SERVICE=$1 SH=${2:-/bin/sh} - + CONTAINER=$(docker container ls --format "table {{.ID}},{{.Names}}" \ | grep ${STACK_NAME}_${SERVICE} | cut -d',' -f1) @@ -48,7 +48,7 @@ sub_service_run(){ sub_deploy (){ COMPOSE=${1:-compose.yml} - + echo "About to deploy:" echo "Compose: $(tput setaf 3)${PWD}/${COMPOSE}$(tput sgr0)" echo "Domain: $(tput setaf 2)${DOMAIN}$(tput sgr0)"