-
As best I can tell from examining the code (and behavior I see), if I have an existing
If a file exists in the Assuming my assessment is correct (big assumption, I know), could there be a way to tell Does this option exist, and if not, could it? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 13 replies
-
You could write a pre-render script that does the cleaning. or before running git push origin --delete gh-pages
git checkout --orphan gh-pages
# preview files to be deleted
git rm -rf --dry-run .
# actually delete the files
git rm -rf .
git push gh-pages |
Beta Was this translation helpful? Give feedback.
-
Given new features for
This allows me to make "the data" available as pins to whomever wants to use a One sticking point is the seeming inability to specify a "clean" update to the Following @mcanouil's suggested code for cleaning the temporary directory, I had a look at how a
There would have to be a corresponding PR to quarto-web to update the docs. A few questions:
What do you think, @cscheid, @jjallaire? If you think it feasible, I'd be happy to start a PR. Thanks for letting me impose! |
Beta Was this translation helpful? Give feedback.
-
@ijlyttle Maybe mark this discussion as "resolved"/"answered" since your PR (#3692) was merged. |
Beta Was this translation helpful? Give feedback.
@ijlyttle Maybe mark this discussion as "resolved"/"answered" since your PR (#3692) was merged.