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
mktempdir
cleanup=true
to match Julia base on 1.3+. This would be something like adding atexit(() -> rm(dir; recursive=true)) inside mktempdir().
atexit(() -> rm(dir; recursive=true))
mktempdir()
The text was updated successfully, but these errors were encountered:
Hmm, I suppose we can provide that very basic fallback for now. I suspect it won't work properly for all filesystems. For example, the base code:
I don't think this is applicable for S3Path, but it'll likely require overloading a custom temp_cleanup method.
S3Path
temp_cleanup
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
to match Julia base on 1.3+. This would be something like adding
atexit(() -> rm(dir; recursive=true))
insidemktempdir()
.The text was updated successfully, but these errors were encountered: