-
Notifications
You must be signed in to change notification settings - Fork 525
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
Referencing of multiple files from same repository directory #445
Conversation
Referencing of multiple files from same repository directory
|
||
if isInRightVersion then | ||
verbosefn "Sourcefile %s is already there." (source.ToString()) | ||
else | ||
tracefn "Downloading %s to %s" (source.ToString()) destination | ||
|
||
CleanDir (destination |> Path.GetDirectoryName) | ||
destination |> Path.GetDirectoryName |> CleanDir |
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.
It doesn't work as CleanDir
removes the directory with all the already downloaded files.
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.
ahj this would explain #442
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.
yes, it's the cause of it
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.
How about e7e3a43 ?
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.
Better, but if someone reference multiple files from different branches, so version would differ and the behavior is not predictable and we would still get access errors.
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.
Yes. That's true I don't have a good solution right now. Maybe you see a better way
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.
Provided better handling with #451
Should allow to unbundle FSharp.Data from Deedle
/cc @tpetricek, @isaacabraham, @mexx