We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4049367 commit c89696bCopy full SHA for c89696b
tools/pkg/build.py
@@ -737,6 +737,17 @@ def salt_onedir(
737
else:
738
env["RELENV_PIP_DIR"] = "1"
739
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
+
751
ctx.run(
752
str(pip_bin),
753
"install",
0 commit comments