From 9255d288eed33d2ef747dcb98bc9f72a225afb34 Mon Sep 17 00:00:00 2001 From: Eric Molitor <534583+emolitor@users.noreply.github.com> Date: Fri, 16 Jan 2026 16:58:04 +0000 Subject: [PATCH 1/2] fix: Fix sync.sh init for newer version of subversion --- sync.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sync.sh b/sync.sh index 50d8da7..42720e7 100755 --- a/sync.sh +++ b/sync.sh @@ -28,13 +28,13 @@ then mkdir -p ${BASE} echo Creating SVN Mirror... - svnadmin create ${LOCAL_SVN} ${REMOTE_SVN} - mkdir ${LOCAL_SVN}/hooks + svnadmin create ${LOCAL_SVN} + mkdir -p ${LOCAL_SVN}/hooks echo '#!/bin/sh' > ${LOCAL_SVN}/hooks/pre-revprop-change chmod 755 ${LOCAL_SVN}/hooks/pre-revprop-change echo Syncing SVN mirror for the first time, this will take a while... - svnsync sync file://${LOCAL_SVN} + svnadmin init file://${LOCAL_SVN} ${REMOTE_SVN} echo Cloning from git... git clone ${REMOTE_GIT} ${LOCAL_GIT} From dd276a5ff1def1a6897a848a452d5514df0265f4 Mon Sep 17 00:00:00 2001 From: Eric Molitor <534583+emolitor@users.noreply.github.com> Date: Fri, 16 Jan 2026 17:02:09 +0000 Subject: [PATCH 2/2] fix: Fix path assumptions in sync.sh init --- sync.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sync.sh b/sync.sh index 42720e7..dce10ec 100755 --- a/sync.sh +++ b/sync.sh @@ -40,12 +40,13 @@ then git clone ${REMOTE_GIT} ${LOCAL_GIT} echo Setting up additional mirrors + pushd . cd ${LOCAL_GIT} for i in ${!EXTRA_GIT_MIRRORS[@]} do git remote add ${i} ${EXTRA_GIT_MIRRORS[$i]} done - cd .. + popd echo Adding SVN config cp authors.txt ${BASE}/