buildifier

This commit is contained in:
2021-05-24 00:11:58 +03:00
parent c71b70a32a
commit 424b115841
2 changed files with 7 additions and 10 deletions

View File

@@ -11,8 +11,8 @@ def _rootfs_impl(ctx):
],
)
return [DefaultInfo(
files = depset([out]),
runfiles = ctx.runfiles(files = ctx.files.src),
files = depset([out]),
runfiles = ctx.runfiles(files = ctx.files.src),
)]
rootfs = rule(
@@ -46,6 +46,6 @@ temp = rule(
implementation = _temp_impl,
attrs = {
"data": attr.label(mandatory = True, allow_single_file = True),
"out": attr.output(mandatory = True)
"out": attr.output(mandatory = True),
},
)