Skip to content

Commit c89696b

Browse files
committed
Install ppbt in case it is not there yet
1 parent 4049367 commit c89696b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tools/pkg/build.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,17 @@ def salt_onedir(
737737
else:
738738
env["RELENV_PIP_DIR"] = "1"
739739
pip_bin = env_scripts_dir / "pip3"
740+
if platform == "linux":
741+
# This installs the ppbt package. We'll remove it after installing all
742+
# of our python packages.
743+
ctx.run(
744+
str(pip_bin),
745+
"-m",
746+
"pip",
747+
"install",
748+
"relenv[toolchain]",
749+
)
750+
740751
ctx.run(
741752
str(pip_bin),
742753
"install",

0 commit comments

Comments
 (0)