From f35f077c76c8f5abdd506ded48c6f7ea769a1d16 Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Fri, 24 May 2024 15:24:15 +0200 Subject: [PATCH] Swift: cleanup tools scripts in pack --- swift/tools/BUILD.bazel | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/swift/tools/BUILD.bazel b/swift/tools/BUILD.bazel index ae04a587a944..777b96490685 100644 --- a/swift/tools/BUILD.bazel +++ b/swift/tools/BUILD.bazel @@ -6,16 +6,6 @@ sh_binary( visibility = ["//swift/tools/test/qltest:__pkg__"], ) -sh_binary( - name = "autobuild", - srcs = ["autobuild.sh"], -) - -sh_binary( - name = "identify-environment", - srcs = ["identify-environment.sh"], -) - codeql_pkg_files( name = "tools", srcs = [ @@ -23,9 +13,9 @@ codeql_pkg_files( "tracing-config.lua", ], exes = [ - ":autobuild", - ":identify-environment", - ":qltest", + "autobuild.sh", + "identify-environment.sh", + "qltest.sh", ], visibility = ["//swift:__pkg__"], )