You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2018/07/17 18:00:41 UTC

[couchdb] branch 1450-fix-couch-rebar created (now 5f81172)

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

wohali pushed a change to branch 1450-fix-couch-rebar
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


      at 5f81172  Add missing default case clause, fixes #1450

This branch includes the following new commits:

     new 5f81172  Add missing default case clause, fixes #1450

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb] 01/01: Add missing default case clause, fixes #1450

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch 1450-fix-couch-rebar
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 5f8117230f8f0ef548e8ebd26dbf13c2fa95468e
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Tue Jul 17 14:00:21 2018 -0400

    Add missing default case clause, fixes #1450
---
 src/couch/rebar.config.script | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/couch/rebar.config.script b/src/couch/rebar.config.script
index fe7383c..5321cff 100644
--- a/src/couch/rebar.config.script
+++ b/src/couch/rebar.config.script
@@ -74,7 +74,7 @@ ok = CopyIfDifferent(CouchJSConfig, ConfigBin),
 MD5Config = case lists:keyfind(erlang_md5, 1, CouchConfig) of
     {erlang_md5, true} ->
         [{d, 'ERLANG_MD5', true}];
-    {erlang_md5, false} ->
+    _ ->
         []
 end,