Skip to content

Commit

Permalink
print ui/build args
Browse files Browse the repository at this point in the history
  • Loading branch information
fitztrev committed Oct 16, 2024
1 parent eba51e5 commit dc1d744
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lila-docker
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ build_all_profiles() {
}

run_ui_build() {
docker compose run --rm ui /lila/ui/build --update --clean-build --debug $@
ARGS=(--update --clean-build --debug $@)
echo "Running ./ui/build with args: ${ARGS[@]}"
docker compose run --rm ui /lila/ui/build "${ARGS[@]}"
}

setup_database() {
Expand Down

0 comments on commit dc1d744

Please sign in to comment.