Skip to content

Commit 5aad306

Browse files
authored
Merge pull request #49 from strangest-quark/master
Fixing #39
2 parents 60c7c77 + f205864 commit 5aad306

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

brew/stackbox-brew.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,12 @@ srcPath=$(pwd)"/stackbox/"
111111

112112
mkdir $srcPath
113113
cp -r $installationPath/. $srcPath
114-
echo "Your code is in ./"$srcPath
114+
echo "Your code is in "$srcPath
115+
printf "\n"
115116

116117
echo "######## BUILDING YOUR STACK ###############"
118+
printf "\n"
119+
117120

118121
beginswith() { case $2 in "$1"*) true;; *) false;; esac; }
119122

@@ -137,6 +140,8 @@ docker-compose -f $srcPath/docker-compose.yml build > $srcPath/logs/docker-compo
137140

138141
printf "\n"
139142
echo "######## DEPLOYING YOUR STACK ##############"
143+
printf "\n"
144+
140145

141146
docker-compose -f $srcPath/docker-compose.yml up -d --remove-orphans
142147

@@ -173,4 +178,5 @@ do
173178
echo ${tmp#"stackbox_"} is up at http://localhost:${service_ports[i]}
174179
fi
175180
fi
176-
done
181+
done
182+
printf "\n"

0 commit comments

Comments
 (0)