This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/attic.git
The following commit(s) were added to refs/heads/main by this push: new 59ab0b7 ATTIC-242 cwiki flags now read by Puppet from cwiki-retired branch 59ab0b7 is described below commit 59ab0b71265c5621ae6f3d1a3534c697d54d2e7b Author: Hervé Boutemy <hbout...@apache.org> AuthorDate: Sun Apr 20 18:40:05 2025 +0200 ATTIC-242 cwiki flags now read by Puppet from cwiki-retired branch --- sync-to-legacy-svn.sh | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/sync-to-legacy-svn.sh b/sync-to-legacy-svn.sh deleted file mode 100755 index e86c85c..0000000 --- a/sync-to-legacy-svn.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/env bash - -# Script to sync Git content to legacy svn https://svn.apache.org/repos/asf/attic/site/cwiki_retired - -[ -d .svn ] || svn co https://svn.apache.org/repos/asf/attic/site/cwiki_retired .svn-legacy - -svn up .svn-legacy - -cd .svn-legacy - -# add new content -cp ../cwiki_retired/* . -svn add * - -# eventually remove old content -for f in * -do - [ -f ../cwiki_retired/$f ] || svn rm $f -done - -svn ci -m "sync from Git commit $(git log -1 --pretty="%H")" .svn-legacy