Skip to content

Commit

Permalink
container_load: use cfg="exec" instead of cfg="host" (#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yannic authored Dec 6, 2021
1 parent 8c26cf5 commit ee3d0d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions container/load.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -67,22 +67,22 @@ container_load = repository_rule(
"_loader_darwin": attr.label(
executable = True,
default = Label("@loader_darwin//file:downloaded"),
cfg = "host",
cfg = "exec",
),
"_loader_linux_amd64": attr.label(
executable = True,
default = Label("@loader_linux_amd64//file:downloaded"),
cfg = "host",
cfg = "exec",
),
"_loader_linux_arm64": attr.label(
executable = True,
default = Label("@loader_linux_arm64//file:downloaded"),
cfg = "host",
cfg = "exec",
),
"_loader_linux_s390x": attr.label(
executable = True,
default = Label("@loader_linux_s390x//file:downloaded"),
cfg = "host",
cfg = "exec",
),
},
implementation = _impl,
Expand Down

0 comments on commit ee3d0d2

Please sign in to comment.