This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm-site.git
The following commit(s) were added to refs/heads/main by this push:
new e786a8f6e3 [SCRIPT] update site script to exclude ffi
e786a8f6e3 is described below
commit e786a8f6e3bfa2efa87b4b94f7fdb1090cd65224
Author: tqchen <[email protected]>
AuthorDate: Mon Sep 1 17:06:24 2025 -0400
[SCRIPT] update site script to exclude ffi
---
scripts/task_deploy_asf_site.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/task_deploy_asf_site.sh b/scripts/task_deploy_asf_site.sh
index 22c58c4f74..1a71eae82d 100755
--- a/scripts/task_deploy_asf_site.sh
+++ b/scripts/task_deploy_asf_site.sh
@@ -13,8 +13,8 @@ cp .asf.yaml .asf.yaml.bak
git fetch
git checkout -B asf-site origin/asf-site
-# remove all existing files, excluding the docs
-git ls-files | grep -v ^docs| xargs rm -f
+# remove all existing files, excluding the docs and ffi
+git ls-files | grep -v -e ^docs -e ^ffi | xargs rm -f
cp .gitignore.bak .gitignore
cp .asf.yaml.bak .asf.yaml