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
pex_main: always clean up exploded zip when exiting (#142)
If a pex file contains zip-unsafe files or is otherwise told to explode
itself when it runs (e.g. via the `PEX_EXPLODE` environment variable),
`pex_main` extracts its own contents to a temporary directory. However,
it only deletes those files after the entry point script finishes
executing provided that the script does not throw an exception. For
large pex archives, this can quickly fill up the file system containing
the temporary directory.
Unconditionally delete the extracted contents of the pex when the entry
point script finishes executing.
Fixes#131.
0 commit comments