File: Core/Conda/install/install_macOS.sh:28-29
The current trap 'rm -rf "$TMPDIR_PATH"' EXIT only fires on normal exit. Confirm what signals should be caught (INT, TERM, HUP) so the temp directory is cleaned up on Ctrl-C or terminal disconnect. Note: SIGKILL cannot be trapped by design — document that caveat. Consider trap 'rm -rf "$TMPDIR_PATH"' EXIT INT TERM HUP.
Nick > "This will fail, why? ;) Likely we should also add SIGKILL, SIGINT"
File:
Core/Conda/install/install_macOS.sh:28-29The current
trap 'rm -rf "$TMPDIR_PATH"' EXITonly fires on normal exit. Confirm what signals should be caught (INT,TERM,HUP) so the temp directory is cleaned up on Ctrl-C or terminal disconnect. Note:SIGKILLcannot be trapped by design — document that caveat. Considertrap 'rm -rf "$TMPDIR_PATH"' EXIT INT TERM HUP.Nick > "This will fail, why? ;) Likely we should also add SIGKILL, SIGINT"