mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-16 18:07:08 -05:00
a0fddd44eb
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
20 lines
622 B
Python
20 lines
622 B
Python
load("//bazel/sh:def.bzl", "sh_template")
|
|
|
|
sh_template(
|
|
name = "devbuild",
|
|
data = [
|
|
"//bootstrapper/cmd/bootstrapper",
|
|
"//cli:cli_oss_host",
|
|
"//debugd/cmd/cdbg:cdbg_host",
|
|
"//upgrade-agent/cmd",
|
|
],
|
|
substitutions = {
|
|
"@@BOOTSTRAPPER@@": "$(rootpath //bootstrapper/cmd/bootstrapper)",
|
|
"@@CDBG@@": "$(rootpath //debugd/cmd/cdbg:cdbg_host)",
|
|
"@@CLI@@": "$(rootpath //cli:cli_oss_host)",
|
|
"@@UPGRADE_AGENT@@": "$(rootpath //upgrade-agent/cmd)",
|
|
},
|
|
template = "prepare_developer_workspace.sh.in",
|
|
visibility = ["//visibility:public"],
|
|
)
|