List files and directories created/updated by quarto render
#2372
Victor-Botelho
started this conversation in
Feature Requests
Replies: 2 comments 1 reply
-
I was literally about to ask the same question. My use case is just slightly different: I would like to conditionally run Quarto only when the inputs have changed, in a Makefile in my project: quarto-r-deps:
@Rscript -e 'if (!require(pak)) { \
install.packages("pak"); \
library(pak) \
}; \
pak::local_install_dev_deps()'
quarto: quarto-r-deps
@quarto render If I had some sort of manifest file that contains a list of generated files, then I can use that as a target with all |
Beta Was this translation helpful? Give feedback.
1 reply
-
Just as reference, possible related use case in quarto-dev/quarto-r#14 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
My team currently uses a Git Hook to automatically render
.qmd
files and stage and commit the files and directories created/updated by such command. It would be interesting ifquarto render
could return some kind of output containing all files and directories updated/created, so I could program my Git Hook to staged and commit such results.Beta Was this translation helpful? Give feedback.
All reactions