Ran buildifier (#581)
This commit is contained in:
parent
144814658a
commit
bf8c42f883
|
@ -48,5 +48,5 @@ sh_binary(
|
||||||
|
|
||||||
sh_binary(
|
sh_binary(
|
||||||
name = "test_docs",
|
name = "test_docs",
|
||||||
srcs = ["test_docs.sh"]
|
srcs = ["test_docs.sh"],
|
||||||
)
|
)
|
||||||
|
|
|
@ -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",
|
||||||
|
|
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue