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
taters.locations.ftp( 'ftp://a.com/x/y' ).source() yields files with their dirname set to /x/y (as in /x/y/somefile.txt), which when passed to a local location will attempt to create that path, causing a permission error.
Additionally, local locs should not accept absolute paths in the first place, and always assume they are relative to the local loc's basepath. Fixing this would also resolve this issue.
The text was updated successfully, but these errors were encountered:
taters.locations.ftp( 'ftp://a.com/x/y' ).source()
yields files with their dirname set to/x/y
(as in/x/y/somefile.txt
), which when passed to a local location will attempt to create that path, causing a permission error.Additionally, local locs should not accept absolute paths in the first place, and always assume they are relative to the local loc's basepath. Fixing this would also resolve this issue.
The text was updated successfully, but these errors were encountered: