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
Here's a demonstration on Linux:
λ Path x = [Path.Posix.reldir|.|] λ x "" λ Path x = [Path.Windows.reldir|.|] λ x ".\\"
The root cause of the problem is that our definition of relRootFP uses the platform-dependent System.FilePath.pathSeparator:
relRootFP
System.FilePath.pathSeparator
path/src/Path/Internal.hs
Lines 56 to 58 in 8f9354d
A fix should probably move relRootFP into Path.Include.
Path.Include
The text was updated successfully, but these errors were encountered:
I believe this is fixed with #163?
Sorry, something went wrong.
I don't see any library changes in #163. Did you mean a different PR?
Sorry, my mistake! #167 it is.
Neat! Thanks a lot for the fix, @Martinsos! :)
No branches or pull requests
Here's a demonstration on Linux:
The root cause of the problem is that our definition of
relRootFP
uses the platform-dependentSystem.FilePath.pathSeparator
:path/src/Path/Internal.hs
Lines 56 to 58 in 8f9354d
A fix should probably move
relRootFP
intoPath.Include
.The text was updated successfully, but these errors were encountered: