blob: 01bc4de8ce4c16a55dbe23a277cbc6d05daf7533 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Installers for use by the tools/vm_test rules.
package(
default_visibility = ["//:sandbox"],
licenses = ["notice"],
)
sh_binary(
name = "head",
srcs = ["head.sh"],
data = ["//runsc"],
)
sh_binary(
name = "master",
srcs = ["master.sh"],
)
sh_binary(
name = "shim",
srcs = ["shim.sh"],
)
|