We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60c7c77 + f205864 commit 5aad306Copy full SHA for 5aad306
1 file changed
brew/stackbox-brew.sh
@@ -111,9 +111,12 @@ srcPath=$(pwd)"/stackbox/"
111
112
mkdir $srcPath
113
cp -r $installationPath/. $srcPath
114
-echo "Your code is in ./"$srcPath
+echo "Your code is in "$srcPath
115
+printf "\n"
116
117
echo "######## BUILDING YOUR STACK ###############"
118
119
+
120
121
beginswith() { case $2 in "$1"*) true;; *) false;; esac; }
122
@@ -137,6 +140,8 @@ docker-compose -f $srcPath/docker-compose.yml build > $srcPath/logs/docker-compo
137
140
138
141
printf "\n"
139
142
echo "######## DEPLOYING YOUR STACK ##############"
143
144
145
146
docker-compose -f $srcPath/docker-compose.yml up -d --remove-orphans
147
@@ -173,4 +178,5 @@ do
173
178
echo ${tmp#"stackbox_"} is up at http://localhost:${service_ports[i]}
174
179
fi
175
180
176
-done
181
+done
182
0 commit comments