Ran buildifier (#581)

This commit is contained in:
UebelAndre 2021-03-22 08:13:48 -07:00 committed by GitHub
parent 144814658a
commit bf8c42f883
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -48,5 +48,5 @@ sh_binary(
sh_binary( sh_binary(
name = "test_docs", name = "test_docs",
srcs = ["test_docs.sh"] srcs = ["test_docs.sh"],
) )

View File

@ -20,7 +20,7 @@ cmake(
out_static_libs = select({ out_static_libs = select({
"@platforms//os:windows": [ "@platforms//os:windows": [
"working_a.lib", "working_a.lib",
"working_b.lib" "working_b.lib",
], ],
"//conditions:default": [ "//conditions:default": [
"libworking_a.a", "libworking_a.a",

View File

@ -89,7 +89,6 @@ def _create_configure_script(configureParameters):
# Generate commands for all the targets, ensuring there's # Generate commands for all the targets, ensuring there's
# always at least 1 call to the default target. # always at least 1 call to the default target.
for target in ctx.attr.targets or [""]: for target in ctx.attr.targets or [""]:
# There's no need to use the `--target` argument for an empty/"all" target # There's no need to use the `--target` argument for an empty/"all" target
if target: if target:
target = "--target '{}'".format(target) target = "--target '{}'".format(target)