diff options
author | lrknox <lrknox> | 2016-10-24 19:17:24 (GMT) |
---|---|---|
committer | lrknox <lrknox> | 2016-10-24 19:17:24 (GMT) |
commit | 62232e9120a799f710e89eba86831c37d4096702 (patch) | |
tree | db02062dc09acb4343b813d11a203fcf9e304472 /bin/release | |
parent | 582bc9481ffdebfd1578cb828c7e7aaefaff02c6 (diff) | |
download | hdf5-62232e9120a799f710e89eba86831c37d4096702.zip hdf5-62232e9120a799f710e89eba86831c37d4096702.tar.gz hdf5-62232e9120a799f710e89eba86831c37d4096702.tar.bz2 |
Translate svn commands and references to git.
Diffstat (limited to 'bin/release')
-rwxr-xr-x | bin/release | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/release b/bin/release index 1d3c9c5..08779cb 100755 --- a/bin/release +++ b/bin/release @@ -168,7 +168,7 @@ release_date=`date +%F` today=`date +%Y%m%d` pmode='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 @@ -316,8 +316,8 @@ for comp in $methods; do ;; doc) 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 |