diff options
author | Jan Lehnardt <jan@apache.org> | 2023-01-06 10:33:05 +0100 |
---|---|---|
committer | Jan Lehnardt <jan@apache.org> | 2023-01-06 10:33:05 +0100 |
commit | 5c1659f3e4b794a9a8228eb3f502df3cf3ea09ac (patch) | |
tree | 4b8e35bd31cfabe45d8329127149bdd9cd7e63f2 | |
parent | f860c953dd5c42364eb21182ddbcf568413760e4 (diff) | |
download | couchdb-5c1659f3e4b794a9a8228eb3f502df3cf3ea09ac.tar.gz |
fix: debuggng leftover, speed up local rebar clones
-rwxr-xr-x | configure | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -294,8 +294,7 @@ EOF install_local_rebar() { if [ ! -x "${rootdir}/bin/rebar" ]; then if [ ! -d "${rootdir}/src/rebar" ]; then - # git clone --depth 1 https://github.com/apache/couchdb-rebar.git ${rootdir}/src/rebar - git clone https://github.com/apache/couchdb-rebar.git ${rootdir}/src/rebar + git clone --depth 1 https://github.com/apache/couchdb-rebar.git ${rootdir}/src/rebar fi make -C ${rootdir}/src/rebar mv ${rootdir}/src/rebar/rebar ${rootdir}/bin/rebar |