bazel: Remove committed files from //tools:symlink_deps_for_erlang_ls

Since 5feed38be these files are checked in, so there's no need for

    bazel run //tools:symlink_deps_for_erlang_ls

to overwrite them with links.

(cherry picked from commit 2ee91abf01)
This commit is contained in:
Michael Davis 2024-04-12 10:37:53 -04:00 committed by Mergify
parent 545a1c07b8
commit 25d8752eab
1 changed files with 0 additions and 12 deletions

View File

@ -47,18 +47,6 @@ def _deps_symlinks(ctx):
# special case symlinks for generated sources
commands.append("")
commands.append(_ln_command(
target = path_join("..", "..", "..", "bazel-bin", "deps", "rabbit_common", "include", "rabbit_framing.hrl"),
source = path_join("deps", "rabbit_common", "include", "rabbit_framing.hrl"),
))
commands.append(_ln_command(
target = path_join("..", "..", "..", "bazel-bin", "deps", "rabbit_common", "src", "rabbit_framing_amqp_0_8.erl"),
source = path_join("deps", "rabbit_common", "src", "rabbit_framing_amqp_0_8.erl"),
))
commands.append(_ln_command(
target = path_join("..", "..", "..", "bazel-bin", "deps", "rabbit_common", "src", "rabbit_framing_amqp_0_9_1.erl"),
source = path_join("deps", "rabbit_common", "src", "rabbit_framing_amqp_0_9_1.erl"),
))
commands.append(_ln_command(
target = path_join("..", "..", "..", "bazel-bin", "deps", "amqp10_common", "include", "amqp10_framing.hrl"),
source = path_join("deps", "amqp10_common", "include", "amqp10_framing.hrl"),