-
Notifications
You must be signed in to change notification settings - Fork 45
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
Memory.ReadDir()
should return an error when path isn't found.
#38
Conversation
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.
Looks good 👍
Looks like the tests are failing due to a websocket timeout? I don't think that would be related to my changes--would it be possible to rerun the tests and see if it's a fluke? |
@weberc2-tempus It was a fluke. I re-run it and it now passed. We only need to fix the windows issue. Please squash your commits. |
26b152b
to
28a448a
Compare
Presently, it returns an empty list of files and a `nil` error value. This PR aims to fix go-git#37.
28a448a
to
b22371c
Compare
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.
Great job @weberc2-tempus! 🏆
Presently, it returns an empty list of files and a
nil
error value. This PR aims to fix #37