This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new 1bf72bc6f Let `site/bin/checkout-releases.sh` pull the latest state
(#3517)
1bf72bc6f is described below
commit 1bf72bc6f78c8b7bd5c5ef62814270ed2c392b46
Author: Robert Stupp <[email protected]>
AuthorDate: Sat Jan 24 09:44:21 2026 +0100
Let `site/bin/checkout-releases.sh` pull the latest state (#3517)
The script `site/bin/checkout-releases.sh` is a convenience to get the
`versioned-docs` branch locally. It is missing a `git pull` to get the latest
state of that branch though, which can be confusing.
---
site/bin/checkout-releases.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/site/bin/checkout-releases.sh b/site/bin/checkout-releases.sh
index 13bb1b318..6a1c48658 100755
--- a/site/bin/checkout-releases.sh
+++ b/site/bin/checkout-releases.sh
@@ -30,3 +30,5 @@ if [[ -d content/releases ]] ; then
fi
git worktree add content/releases versioned-docs
+
+(cd content/releases ; git pull)