Adrian Schröter 2011-02-08 16:01:28 +00:00 committed by Git OBS Bridge
parent 74a4e0a9d1
commit 5dabc5e6fb
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Feb 8 16:00:48 UTC 2011 - adrian@suse.de
- always trust svn server certificate. We don't have a secure handling
for it anyway. Trust needs to established via extra service.
-------------------------------------------------------------------
Wed Jan 12 10:02:41 UTC 2011 - adrian@suse.de

View File

@ -138,9 +138,9 @@ if [ "$MYSCM" == "svn" ]; then
cd "$MYSUBDIR"
fi
if [ -n "$MYREVISION" ]; then
svn co -r"$MYREVISION" "$MYURL/$MYSUBDIR" "${FILE}" || exit 1
svn co --trust-server-cert -r"$MYREVISION" "$MYURL/$MYSUBDIR" "${FILE}" || exit 1
else
svn co "$MYURL/$MYSUBDIR" "${FILE}" || exit 1
svn co --trust-server-cert "$MYURL/$MYSUBDIR" "${FILE}" || exit 1
fi
if [ -n "$MYSUBDIR" ]; then
cd -