This is an automated email from the ASF dual-hosted git repository.
sebb pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/griffin-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new 5373c1f Updated asf-site site from master
(b649a0ef60387699a88df262e6a4d9cd3006582d)
5373c1f is described below
commit 5373c1fb20ff2666ed1930b6e16e5dca6e6b3833
Author: Sebb <[email protected]>
AuthorDate: Wed Nov 19 17:55:29 2025 +0000
Updated asf-site site from master (b649a0ef60387699a88df262e6a4d9cd3006582d)
---
deploy.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/deploy.sh b/deploy.sh
index c0a83b8..c7b8686 100644
--- a/deploy.sh
+++ b/deploy.sh
@@ -19,7 +19,6 @@ tmp_dir="temp_$last_SHA"
jekyll build -d ~/$tmp_dir > /dev/null 2>&1
if [ $? = 0 ]; then
echo "Jekyll build successful"
- cp .asf.yaml ~/$tmp_dir # Hack
else
echo "Jekyll build failed"
exit 1
@@ -41,6 +40,7 @@ current_dir=${PWD}
rm -r $current_dir/*
git rm -r --cached * > /dev/null 2>&1
cp -r ~/$tmp_dir/* $current_dir
+cp .asf.yaml $current_dir # Hack
# Commit the changes to the SITE branch
message="Updated $SITE site from $SOURCE ($last_SHA)"