We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
e.g. create PEX_PATH that is the analogue to PYTHONPATH and do something like:
pex -r pantsbuild.pants -e pants.bin.pants_exe:main -o pants.pex pex -r pantsbuild.plugin1 -r pantsbuild.plugin2 -r ... -o pants_plugins.pex PEX_PATH=$PEX_PATH:pants_plugins.pex ./pants.pex
and have all the distributions from pants_plugins.pex mixed into pants.pex (providing that there are no conflicts.)
The text was updated successfully, but these errors were encountered:
Implement PEX_PATH, allowing merging of PEX environments. Fixes pex-t…
4f50e45
…ool#30.
9e871b3
Merge pull request #87 from wickman/wickman/30-squash
5c2ce12
Implement PEX_PATH, allowing merging of PEX environments. Fixes #30.
No branches or pull requests
e.g. create PEX_PATH that is the analogue to PYTHONPATH and do something like:
pex -r pantsbuild.pants -e pants.bin.pants_exe:main -o pants.pex
pex -r pantsbuild.plugin1 -r pantsbuild.plugin2 -r ... -o pants_plugins.pex
PEX_PATH=$PEX_PATH:pants_plugins.pex ./pants.pex
and have all the distributions from pants_plugins.pex mixed into pants.pex (providing that there are no conflicts.)
The text was updated successfully, but these errors were encountered: