-
Notifications
You must be signed in to change notification settings - Fork 42
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
Fix filesystem::separator behavior #308
Conversation
Codecov Report
@@ Coverage Diff @@
## main #308 +/- ##
=======================================
Coverage 76.74% 76.75%
=======================================
Files 75 75
Lines 10325 10328 +3
=======================================
+ Hits 7924 7927 +3
Misses 2401 2401
Continue to review full report at Codecov.
|
6138199
to
0038e2f
Compare
72c9f6c
to
10f0df8
Compare
c7c2b44
to
798821b
Compare
10f0df8
to
2bb1fd5
Compare
fb40333
to
0bc6478
Compare
Signed-off-by: Michael Carroll <[email protected]>
* Separator with an emptry string argument should return the preferred separator for that platform * Basename should return basename in the case with multiple trailing slashes Signed-off-by: Michael Carroll <[email protected]>
0bc6478
to
3e101f8
Compare
Signed-off-by: Louise Poubel <[email protected]>
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.
I addressed review feedback in d453ab6. This looks good to me with happy CI. I'd like to get it in because it's currently not possible to download Fuel models that have directories without this PR.
Signed-off-by: Louise Poubel <[email protected]>
Signed-off-by: Louise Poubel <[email protected]>
As it turns out, separator's behavior was not matching the
ign-common5
behavior. Passing an empty string should return the preferred separator for the operating system. We were not currently testing for this.