| Index: tools/update-doxygen.sh
|
| diff --git a/tools/update-doxygen.sh b/tools/update-doxygen.sh
|
| index 348f98fbbf3a19511a9e8c915f15b4f2d15a4c1b..f641f98b4dc8fc934fc509e9061b850cc0a29b7d 100755
|
| --- a/tools/update-doxygen.sh
|
| +++ b/tools/update-doxygen.sh
|
| @@ -31,10 +31,13 @@ DOXYGEN_COMMIT=${DOXYGEN_COMMIT:-true}
|
| mkdir -p $DOXYGEN_TEMPDIR
|
| cd $DOXYGEN_TEMPDIR
|
|
|
| -if [ -d "trunk" ]; then
|
| - svn update --accept theirs-full trunk
|
| +if [ -d "skia" ]; then
|
| + pushd skia
|
| + git pull
|
| + git checkout origin/master
|
| + popd
|
| else
|
| - svn checkout http://skia.googlecode.com/svn/trunk # read-only
|
| + git clone https://skia.googlesource.com/skia.git
|
| fi
|
| if [ -d "docs" ]; then
|
| svn update --accept theirs-full docs
|
|
|