bzl: do not show full commmand line for ctags in dev (#58261)

This commit is contained in:
Jean-Hadrien Chabran 2023-11-10 16:05:25 +01:00 committed by GitHub
parent 3d5d9bded4
commit d25ca767d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,4 +5,7 @@
# To use your own `universal-ctags` binary instead of this wrapper in your local dev server, use
# `CTAGS_COMMAND=path/to/ctags sg start`.
bazel run //dev/tools:universal-ctags -- "$@"
# We silence a few things, because the arguments that symbols pass to this script, which are then passed to
# the bazel run are printed out again by Bazel by default. And they're very long, so much that it hads about
# 40 lines, adding unecessary noise to the output of `sg start`
bazel run //dev/tools:universal-ctags --logging=0 --noshow_progress --ui_event_filters=-info,-debug,-stdout -- "$@"