diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2016-10-24 21:38:45 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2016-10-24 21:38:45 (GMT) |
commit | 3b1b2f42df9fe0579b441f4e57f0838017814266 (patch) | |
tree | 1cec7141b5b106e2c31105cb53a6cbe6e8bf7abe /bin/bbrelease | |
parent | 582bc9481ffdebfd1578cb828c7e7aaefaff02c6 (diff) | |
parent | db9b0cb1006daa2c249a60ceca1d518a3da06c88 (diff) | |
download | hdf5-3b1b2f42df9fe0579b441f4e57f0838017814266.zip hdf5-3b1b2f42df9fe0579b441f4e57f0838017814266.tar.gz hdf5-3b1b2f42df9fe0579b441f4e57f0838017814266.tar.bz2 |
Merge pull request #96 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop
* commit 'db9b0cb1006daa2c249a60ceca1d518a3da06c88':
Translate SVN commands and references to GIT.
Translate svn commands and references to git.
Diffstat (limited to 'bin/bbrelease')
-rwxr-xr-x | bin/bbrelease | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/bbrelease b/bin/bbrelease index c5d562e..b06b243 100755 --- a/bin/bbrelease +++ b/bin/bbrelease @@ -190,7 +190,7 @@ today=`date +%Y%m%d` pmode='no' revmode='no' tmpdir="../#release_tmp.$$" # tmp work directory -DOC_URL=http://svn.hdfgroup.uiuc.edu/hdf5doc/trunk +DOC_URL=https://git@bitbucket.hdfgroup.org/scm/hdffv/hdf5doc.git CPPLUS_RM_NAME=cpplus_RM # Restore previous Version information @@ -334,7 +334,7 @@ done # trunk is different than branches. if [ "${DOCVERSION}" ]; then - DOC_URL=http://svn.hdfgroup.uiuc.edu/hdf5doc/branches/${DOCVERSION} + DOC_URL=https://git@bitbucket.hdfgroup.org/scm/hdffv/hdf5doc.git -b ${DOCVERSION} fi # Create the tar file @@ -371,11 +371,11 @@ for comp in $methods; do ;; doc) if [ "${DOCVERSION}" = "" ]; then - DOCVERSION=trunk + DOCVERSION=master fi test "$verbose" && echo " Creating docs..." 1>&2 - # Check out docs from svn repo - (cd $tmpdir; svn co $DOC_URL > /dev/null) || exit 1 + # Check out docs from git repo + (cd $tmpdir; git clone $DOC_URL > /dev/null) || exit 1 # Create doxygen C++ RM (cd c++/src && doxygen cpp_doc_config > /dev/null ) || exit 1 # Replace version of C++ RM with just-created version |