diff options
Diffstat (limited to 'tools/update-doxygen.sh')
-rwxr-xr-x | tools/update-doxygen.sh | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/tools/update-doxygen.sh b/tools/update-doxygen.sh index 65743c4f6d..c95c2d0366 100755 --- a/tools/update-doxygen.sh +++ b/tools/update-doxygen.sh @@ -1,7 +1,7 @@ #!/bin/bash # -# Runs doxygen and stores its results in the Skia repo, so that they can be -# browsed at http://skia.googlecode.com/svn/docs/html/index.html +# Runs doxygen and stores its results in the skia-autogen repo, so that they +# can be browsed at http://skia-autogen.googlecode.com/svn/docs/html/index.html # Prepare a temporary dir and check out Skia trunk and docs. cd @@ -10,7 +10,7 @@ rm -rf $TEMPDIR mkdir -p $TEMPDIR cd $TEMPDIR svn checkout http://skia.googlecode.com/svn/trunk # read-only -svn checkout https://skia.googlecode.com/svn/docs # writeable +svn checkout https://skia-autogen.googlecode.com/svn/docs # writeable # Run Doxygen. cd trunk @@ -43,11 +43,11 @@ $(doxygen --version) </small></address> EOF # Make sure that all files have the correct mimetype. -find . -name *.html -exec svn propset svn:mime-type text/html '{}' \; -find . -name *.css -exec svn propset svn:mime-type text/css '{}' \; -find . -name *.js -exec svn propset svn:mime-type text/javascript '{}' \; -find . -name *.gif -exec svn propset svn:mime-type image/gif '{}' \; -find . -name *.png -exec svn propset svn:mime-type image/png '{}' \; +find . -name '*.html' -exec svn propset svn:mime-type text/html '{}' \; +find . -name '*.css' -exec svn propset svn:mime-type text/css '{}' \; +find . -name '*.js' -exec svn propset svn:mime-type text/javascript '{}' \; +find . -name '*.gif' -exec svn propset svn:mime-type image/gif '{}' \; +find . -name '*.png' -exec svn propset svn:mime-type image/png '{}' \; # Commit the updated docs to the subversion repo. svn commit --message 'commit doxygen-generated documentation' |