Skip to content

Commit 8f67f39

Browse files
author
Slyke
committed
Added messages when building so the user it may take some time
1 parent 4a705a0 commit 8f67f39

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.internal/ctrl_api.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ else
3333
else
3434
if [[ "$(docker images -q $FULL_NAME 2> /dev/null)" == "" ]]; then
3535
echo "Building '$FULL_NAME'"
36+
echo "This may take 5 to 10 minutes."
3637
docker pull node:14 # Docker occasionally fails to pull image when building when it is not cached.
3738
echo ""
3839
docker build --quiet -t $FULL_NAME -f ./.internal/api.Dockerfile .

.internal/ctrl_pycli.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ else
2828
else
2929
if [[ "$(docker images -q $FULL_NAME 2> /dev/null)" == "" ]]; then
3030
echo "Building '$FULL_NAME'"
31+
echo "This may take 5 to 10 minutes."
3132
docker pull python:3 # Docker occasionally fails to pull image when building when it is not cached.
3233
echo ""
3334
docker build --quiet -t $FULL_NAME -f ./.internal/pycli.Dockerfile .

.internal/ctrl_wui.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ else
3232
if [[ "$(docker images -q $FULL_NAME 2> /dev/null)" == "" ]]; then
3333
echo "React WUI production build not found."
3434
echo "Building '$FULL_NAME'"
35-
echo "This may take 5 to 10 minutes. CLI Menu will open once build is completed."
35+
echo "This may take 5 to 10 minutes."
3636
docker pull node:14 # Docker occasionally fails to pull image when building when it is not cached.
3737
echo ""
3838
docker build --quiet -t $FULL_NAME -f ./.internal/wui.Dockerfile .

0 commit comments

Comments
 (0)