Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: tools/update-doxygen.sh

Issue 132423002: Remove references to Skia's SVN repository (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Re-change first link in view.html and view-platform.html Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/submit_try ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/update-doxygen.sh
diff --git a/tools/update-doxygen.sh b/tools/update-doxygen.sh
index 348f98fbbf3a19511a9e8c915f15b4f2d15a4c1b..87fee32759ef6860cf82ee4159df62edd1775e27 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
@@ -50,11 +53,11 @@ else
fi
if [ ! -f "docs/static_footer.txt" ]; then
- cp trunk/tools/doxygen_footer.txt docs/static_footer.txt
+ cp skia/tools/doxygen_footer.txt docs/static_footer.txt
fi
# Run Doxygen.
-cd trunk
+cd skia
doxygen Doxyfile
ret_code=$?
if [ $ret_code != 0 ]; then
« no previous file with comments | « tools/submit_try ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698