You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bdist_pex.run() doesn't rewrite the {pex_root} token as the "pex" cmdline frontend does which leads
to a directory named "{pex_root}/" in the root-folder of the project.
Adding the same rewrite to pex/commands/bdist_pex.run() fixes it:
if options.cache_dir:
options.cache_dir = make_relative_to_root(options.cache_dir)
bdist_pex.run() doesn't rewrite the {pex_root} token as the "pex" cmdline frontend does which leads
to a directory named "{pex_root}/" in the root-folder of the project.
Adding the same rewrite to pex/commands/bdist_pex.run() fixes it:
Introduced by #206
The text was updated successfully, but these errors were encountered: