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
While working in a docker container (rocker/geospatial:3.6.3) with volume /home mounted, I got the following warning when running chrome_print():
rocker/geospatial:3.6.3
/home
chrome_print()
Warning message: In file.rename(output, input) : cannot rename file '/tmp/RtmpTpM0Kf/file1a565e6ab17.pdf' to 'paged.pdf', reason 'Invalid cross-device link'
The obtained pdf hasn't any outline.
IMO, this comes from
pagedown/R/chrome.R
Line 268 in 0209bcd
Using file.copy() instead of file.rename() solves the bug.
file.copy()
file.rename()
The text was updated successfully, but these errors were encountered:
8d8de3b
No branches or pull requests
While working in a docker container (
rocker/geospatial:3.6.3
) with volume/home
mounted, I got the following warning when runningchrome_print()
:The obtained pdf hasn't any outline.
IMO, this comes from
pagedown/R/chrome.R
Line 268 in 0209bcd
Using
file.copy()
instead offile.rename()
solves the bug.The text was updated successfully, but these errors were encountered: