diff options
author | Manolo Carrasco <manolo@apache.org> | 2011-03-01 14:17:57 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2011-03-01 14:17:57 +0000 |
commit | 1e94c1d26b12e3dda974281b7e3cea3cc7a9e9da (patch) | |
tree | 5d67421355b55c8c2260ebfdef560d3ce17f0c5c /update_docs_svn.sh | |
parent | c7e822557f7433e5d2ae15bbc63ccc9e019bc623 (diff) | |
download | gwtquery-1e94c1d26b12e3dda974281b7e3cea3cc7a9e9da.tar.gz gwtquery-1e94c1d26b12e3dda974281b7e3cea3cc7a9e9da.zip |
updated javadocs
Diffstat (limited to 'update_docs_svn.sh')
-rw-r--r-- | update_docs_svn.sh | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/update_docs_svn.sh b/update_docs_svn.sh index 88befc86..21993d25 100644 --- a/update_docs_svn.sh +++ b/update_docs_svn.sh @@ -2,11 +2,9 @@ # Script to update javadoc deployed in svn -p=`pwd` - -cd gwtquery-core +pushd gwtquery-core mvn javadoc:javadoc -cd $p +popd cp -r gwtquery-core/target/site/apidocs/* gwtquery-core/javadoc/ @@ -24,3 +22,6 @@ find gwtquery-core/javadoc/ | grep -v .svn | xargs svn add find gwtquery-core/javadoc/ -type f -name "*html" -exec svn propset svn:mime-type text/html '{}' ';' + +svn commit -m 'updated javadocs' gwtquery-core/javadoc/ + |