We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2742b8 commit 4e7d40eCopy full SHA for 4e7d40e
util/update-and-sync
@@ -30,7 +30,10 @@ echo 'Cleaning out old HTML files'
30
# don't clean out html/ entirely, because there are some files
31
# under version control there
32
# build-log has been moved elsewhere, however
33
-find html/ -name '*.html' -delete
+# find html/ -name '*.html' -delete # This was the former order
34
+# This new one will clean all files not under source control.
35
+# Use only in the machine where you are going to run things.
36
+git clean -fd
37
38
# if the htmlify fails, sync the build log.
39
# since sync-build-log returns false, not the whole thing is synced
0 commit comments