From 130f298544905ceb2978306ee338be4dce3108af Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Tue, 28 Mar 2023 12:10:04 +0200 Subject: [PATCH] chore(build): Updating folder name for build Signed-off-by: rjshrjndrn --- scripts/helmcharts/build_deploy.sh | 2 +- scripts/helmcharts/build_deploy_parallel.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/helmcharts/build_deploy.sh b/scripts/helmcharts/build_deploy.sh index f37f26c94..1df0d685a 100644 --- a/scripts/helmcharts/build_deploy.sh +++ b/scripts/helmcharts/build_deploy.sh @@ -24,7 +24,7 @@ echo $DOCKER_REPO docker login $DOCKER_REPO cd ../../backend bash build.sh $@ - cd ../utilities + cd ../assist bash build.sh $@ cd ../peers bash build.sh $@ diff --git a/scripts/helmcharts/build_deploy_parallel.sh b/scripts/helmcharts/build_deploy_parallel.sh index 268811a34..b91eac316 100644 --- a/scripts/helmcharts/build_deploy_parallel.sh +++ b/scripts/helmcharts/build_deploy_parallel.sh @@ -22,7 +22,7 @@ echo $DOCKER_REPO docker login $DOCKER_REPO # tmux set-option remain-on-exit on tmux split-window "cd ../../backend && IMAGE_TAG=$IMAGE_TAG DOCKER_REPO=$DOCKER_REPO PUSH_IMAGE=1 bash build.sh $@" - tmux split-window "cd ../../utilities && IMAGE_TAG=$IMAGE_TAG DOCKER_REPO=$DOCKER_REPO PUSH_IMAGE=1 bash build.sh $@" + tmux split-window "cd ../../assist && IMAGE_TAG=$IMAGE_TAG DOCKER_REPO=$DOCKER_REPO PUSH_IMAGE=1 bash build.sh $@" tmux select-layout tiled tmux split-window "cd ../../peers && IMAGE_TAG=$IMAGE_TAG DOCKER_REPO=$DOCKER_REPO PUSH_IMAGE=1 bash build.sh $@" tmux split-window "cd ../../frontend && IMAGE_TAG=$IMAGE_TAG DOCKER_REPO=$DOCKER_REPO PUSH_IMAGE=1 bash build.sh $@"