From ac555ff0a3a98eb4a8a32df1d381a18f88d60e4b Mon Sep 17 00:00:00 2001 From: Dave Bartolomeo Date: Thu, 27 Feb 2025 19:57:00 +0000 Subject: [PATCH] Set the executable bit on the scripts in the Actions extractor --- actions/extractor/BUILD.bazel | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/extractor/BUILD.bazel b/actions/extractor/BUILD.bazel index bbe98d3e8bd4..92d2992013a0 100644 --- a/actions/extractor/BUILD.bazel +++ b/actions/extractor/BUILD.bazel @@ -5,7 +5,8 @@ codeql_pkg_files( srcs = [ "codeql-extractor.yml", "//:LICENSE", - ] + glob(["tools/**"]), + ], + exes = glob(["tools/**"]), strip_prefix = strip_prefix.from_pkg(), visibility = ["//actions:__pkg__"], )