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/incubator-tvm-site.git
The following commit(s) were added to refs/heads/main by this push:
new b531816 Update
b531816 is described below
commit b531816921866c1db7b50fb7b893835530642528
Author: tqchen <[email protected]>
AuthorDate: Mon Nov 2 16:30:49 2020 -0800
Update
---
scripts/task_deploy_asf_site.sh | 2 +-
scripts/task_docs_update.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/task_deploy_asf_site.sh b/scripts/task_deploy_asf_site.sh
index 20b48c9..d00dc26 100755
--- a/scripts/task_deploy_asf_site.sh
+++ b/scripts/task_deploy_asf_site.sh
@@ -19,5 +19,5 @@ cp -rf _site/* .
DATE=`date`
git add --all && git commit -am "Build at ${DATE}"
git push origin asf-site
-git checkout master
+git checkout main
echo "Finish deployment at ${DATE}"
diff --git a/scripts/task_docs_update.sh b/scripts/task_docs_update.sh
index bef6c6b..bd8251c 100755
--- a/scripts/task_docs_update.sh
+++ b/scripts/task_docs_update.sh
@@ -5,7 +5,7 @@ set -u
cleanup()
{
- git checkout master
+ git checkout main
}
trap cleanup 0