-
Notifications
You must be signed in to change notification settings - Fork 1
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
Fix windows zip problem in vignette #50
Conversation
Ugh. Windows is still failing. I thought I had it on that last one. |
I've ran out of ideas on how to fix this right now. Will return to it later. |
Going to retry this one more time now that the zip file doesn't have that weird folder (jhudsl/OTTR_Template#200) |
Nope:
|
But alternatively I may just get rid of that coursera folder because we don't really need it. |
Abandoning this strategy for another solution: #56 This PR is no longer relevant. |
It appears
rprojroot
doesn't always work consistently on windows operating systems. I think that is the problem behind #49.Edit: nope that wasn't the problem. Turns out Windows was having trouble unzipping the file to begin with and that had to do with its assumption that the example data zip file was a text file instead of a zip file like it is. So this is fixed by using
mode = "wb"
upon downloading withdownload.file()
.