We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786560e commit 054dcc0Copy full SHA for 054dcc0
tools/sass_bundle.bzl
@@ -7,11 +7,11 @@ def _sass_bundle(ctx):
7
8
# The entry-point scss file for the bundle.
9
args.add("--entry")
10
- args.add(ctx.attr.entry_point.files)
+ args.add(ctx.file.entry_point)
11
12
# The list of files that can be included in the bundle.
13
args.add("--srcs")
14
- args.add(ctx.files.srcs, join_with =",")
+ args.add_joined(ctx.files.srcs, join_with = ",")
15
16
# The generated bundle's filename.
17
args.add("--output")
0 commit comments