Skip to content

Commit ee3d0d2

Browse files
authored
container_load: use cfg="exec" instead of cfg="host" (#1976)
1 parent 8c26cf5 commit ee3d0d2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

container/load.bzl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,22 +67,22 @@ container_load = repository_rule(
6767
"_loader_darwin": attr.label(
6868
executable = True,
6969
default = Label("@loader_darwin//file:downloaded"),
70-
cfg = "host",
70+
cfg = "exec",
7171
),
7272
"_loader_linux_amd64": attr.label(
7373
executable = True,
7474
default = Label("@loader_linux_amd64//file:downloaded"),
75-
cfg = "host",
75+
cfg = "exec",
7676
),
7777
"_loader_linux_arm64": attr.label(
7878
executable = True,
7979
default = Label("@loader_linux_arm64//file:downloaded"),
80-
cfg = "host",
80+
cfg = "exec",
8181
),
8282
"_loader_linux_s390x": attr.label(
8383
executable = True,
8484
default = Label("@loader_linux_s390x//file:downloaded"),
85-
cfg = "host",
85+
cfg = "exec",
8686
),
8787
},
8888
implementation = _impl,

0 commit comments

Comments
 (0)