Improved mirror script debugging (#968)

This commit is contained in:
Steve Karg
2025-04-16 16:06:25 -05:00
committed by GitHub
parent 54dbf9d140
commit ffb830c954
+3
View File
@@ -9,7 +9,10 @@ mirror_dest='ssh://skarg@git.code.sf.net/p/bacnet/src'
mirror_tree=$(mktemp -d 2>/dev/null || mktemp -d -t 'bacnet-mirror')
echo "Mirror the Github repository with Sourceforge.net"
echo "Temporary directory for mirroring: $mirror_tree"
cd $mirror_tree
echo "Cloning from source: $mirror_source"
git clone --bare $mirror_source .
echo "Pushing to destination: $mirror_dest"
git push --mirror $mirror_dest
cd -