diff options
author | Jan Lehnardt <jan@apache.org> | 2017-03-22 11:50:10 +0100 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2017-04-01 19:41:36 +0200 |
commit | f4c6113808d1809469df9c8be9d2f83ef399f064 (patch) | |
tree | 33b09f34f874f51c687400ee76d98befd0dd0069 /configure | |
parent | bb187a22a098f156082cd7b66a492bff7f49baa2 (diff) | |
download | couchdb-f4c6113808d1809469df9c8be9d2f83ef399f064.tar.gz |
feat: monorepo fixes
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -191,7 +191,7 @@ EOF install_local_rebar() { if [ ! -x "${rootdir}/bin/rebar" ]; then if [ ! -d "${rootdir}/src/rebar" ]; then - git clone --depth 1 --branch 2.6.0 https://git-wip-us.apache.org/repos/asf/couchdb-rebar.git ${rootdir}/src/rebar + git clone --depth 1 --branch 2.6.0 https://github.com/apache/couchdb-rebar.git ${rootdir}/src/rebar fi make -C ${rootdir}/src/rebar mv ${rootdir}/src/rebar/rebar ${rootdir}/bin/rebar @@ -205,7 +205,6 @@ if [ -z "${REBAR}" ]; then REBAR=${rootdir}/bin/rebar fi - # only update dependencies, when we are not in a release tarball if [ -d .git -a $SKIP_DEPS -ne 1 ]; then echo "==> updating dependencies" |