-
Notifications
You must be signed in to change notification settings - Fork 174
New issue
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
717 tmpdir flag silently fails when not a real directory #775
717 tmpdir flag silently fails when not a real directory #775
Conversation
@Noxsios your first commit in this PR is not signed: |
@Racer159 it looks like all the commits are signed from my perspective |
Ah yeah you're right I was looking at the wrong thing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lgtm
Description
Add error handling to inside of
utils.makeTempDir
instead of handling each instance it is run, since all errors will produce the same outcome. Users must first create the--tempdir
path if they specify it.This means that users will have to do
mkdir -p <some temp path>
before they will be able to run using the--tempdir
flag. This is already handled in CI tests, which is the reason for the silent error during actual usage.Related Issue
Fixes #717
Type of change