Skip to content

Commit

Permalink
Build: Fix build_dir naming when build docker UI
Browse files Browse the repository at this point in the history
Issue: #3964
PR: #3966
  • Loading branch information
ilija-lazoroski committed Dec 19, 2023
1 parent b93b9b6 commit 87d9758
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build_scripts/docker/docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ setup_build_dir() {
generate_ssl_cert "$build_dir"

if [[ $FEATURE_FLAGS == *"NEXT_JS_UI"* ]]; then
build_nextjs_frontend "$BUILD_DIR" "$is_release_build"
build_nextjs_frontend "$build_dir" "$is_release_build"
else
build_frontend "$BUILD_DIR" "$is_release_build"
build_frontend "$build_dir" "$is_release_build"
fi
}

Expand Down

0 comments on commit 87d9758

Please sign in to comment.