Skip to content

Commit

Permalink
adding workspace prefix triggers the bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ulysses4ever committed Aug 15, 2019
1 parent 02ba730 commit 1d79b74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rules.bzl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
load("//:build_settings.bzl", "FlavorProvider")
load("@bsws//:build_settings.bzl", "FlavorProvider")
def _rule_impl(ctx):
type = ctx.attr.flavor[FlavorProvider].type
if type:
Expand All @@ -10,7 +10,7 @@ drink_rule = rule(
implementation = _rule_impl,
attrs = {
"flavor": attr.label(
default = "//:favorite_flavor",
default = "@bsws//:favorite_flavor",
)
}
)

0 comments on commit 1d79b74

Please sign in to comment.