We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In this line:
drake/R/decorate_storr.R
Line 235 in c02f19e
The error message is shown with backslashes () instead of forward slashes (/) in Windows, so it cannot be simply pasted.
The message looks like:
drake::drake_cache("C:\some_path\.drake")$unlock()
When it should look like:
drake::drake_cache("C:/some_path/.drake")$unlock()
Using normalizePath() should make it work as desired. (PR coming shortly.)
normalizePath()
The text was updated successfully, but these errors were encountered:
Both should work even on Windows, but the second version is clearer.
Sorry, something went wrong.
The first message gave an error like:
"\." is not a recognized escape sequence.
Thanks for merging!
Successfully merging a pull request may close this issue.
In this line:
drake/R/decorate_storr.R
Line 235 in c02f19e
The error message is shown with backslashes () instead of forward slashes (/) in Windows, so it cannot be simply pasted.
The message looks like:
When it should look like:
Using
normalizePath()
should make it work as desired. (PR coming shortly.)The text was updated successfully, but these errors were encountered: