You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The datapackage spec requires all paths in the package metadata to be POSIX paths, however the implementation doesn't enforce this in a platform independent manner, so some functions when run on Window can generate path strings like "path_to\\data.csv". This poses two problems:
corrupt/non-conformant package metadata maybe written
path comparisons may fail on some OS combinationss (when package creation and the path comparison are not happening on the same OS).
Thanks a lot! yes, it is complaining that path is missing.
I've just submitted a pull request removing a windows specific check for posix. It seems no longer needed (?)
The datapackage spec requires all paths in the package metadata to be POSIX paths, however the implementation doesn't enforce this in a platform independent manner, so some functions when run on Window can generate path strings like
"path_to\\data.csv"
. This poses two problems:Two separate resolutions are required:
sark.dpkg._ensure_posix
)Path(..).samefile(..)
The text was updated successfully, but these errors were encountered: