You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2023/01/06 11:12:18 UTC

[couchdb] branch main updated: fix: debuggng leftover, speed up local rebar clones

This is an automated email from the ASF dual-hosted git repository.

jan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/main by this push:
     new 108103390 fix: debuggng leftover, speed up local rebar clones
108103390 is described below

commit 10810339052a06991095fbc39206c2c7a37f5c80
Author: Jan Lehnardt <ja...@apache.org>
AuthorDate: Fri Jan 6 10:33:05 2023 +0100

    fix: debuggng leftover, speed up local rebar clones
---
 configure | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/configure b/configure
index 9f8cb6828..79377ea1a 100755
--- a/configure
+++ b/configure
@@ -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