Compatibility with write-protected source directories #7254
-
DescriptionThere are a number of similar issues that touch on this functionality ( #1666, #6518 ) but I couldn't find any that address it explicitly. We are trying to render pdfs from qmd source directories that are write protected. So far, here are the things I've found that stand in the way: (as of v1.3.450)
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Possibly address in the future with: In the meantime, there is an easy workaround/solution which is to not run Quarto inside the non writable environment: cp -r my-quarto-project /tmp
quarto render /tmp/my-quarto-project Note that the issue would be the same with Pandoc, rmarkdown, etc. |
Beta Was this translation helpful? Give feedback.
Possibly address in the future with:
In the meantime, there is an easy workaround/solution which is to not run Quarto inside the non writable environment:
Note that the issue would be the same with Pandoc, rmarkdown, etc.
Executing something in a non-writable space is rarely working ok.