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 Pull method isn't working. I assume that the problem is because the inner implementation of the Pull method contains the following line which is problematic:
if (OperatingSystem.IsWindows()) {
// Windows filesystems can't cope with ':' so we replace these with '-'
dstPath = dstPath.Replace(':', '-');
}
The above code will convert for example: c:\users\user1\docs to c-\users\user1\docs which is invalid path.
Thanks,
Boris.
The text was updated successfully, but these errors were encountered:
Hi,
The Pull method isn't working. I assume that the problem is because the inner implementation of the Pull method contains the following line which is problematic:
The above code will convert for example: c:\users\user1\docs to c-\users\user1\docs which is invalid path.
Thanks,
Boris.
The text was updated successfully, but these errors were encountered: