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
When creating TMPDIR on OS X it doesn't seem to be unique on each run of the script, especially if using the "zip" type. The fix for me was to initialize TMPDIR as follows:
When creating
TMPDIR
on OS X it doesn't seem to be unique on each run of the script, especially if using the "zip" type. The fix for me was to initializeTMPDIR
as follows:TMPDIR=`mktemp -d 2>/dev/null || mktemp -d -t '$PROGRAM.XXXXXX'`
This fix is safe for both Linux and OS X.
The text was updated successfully, but these errors were encountered: