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 2010/05/23 00:28:58 UTC

svn commit: r947345 - /couchdb/branches/0.11.x/bin/couchdb.tpl.in

Author: jan
Date: Sat May 22 22:28:58 2010
New Revision: 947345

URL: http://svn.apache.org/viewvc?rev=947345&view=rev
Log:
fix utils/run

Modified:
    couchdb/branches/0.11.x/bin/couchdb.tpl.in

Modified: couchdb/branches/0.11.x/bin/couchdb.tpl.in
URL: http://svn.apache.org/viewvc/couchdb/branches/0.11.x/bin/couchdb.tpl.in?rev=947345&r1=947344&r2=947345&view=diff
==============================================================================
--- couchdb/branches/0.11.x/bin/couchdb.tpl.in (original)
+++ couchdb/branches/0.11.x/bin/couchdb.tpl.in Sat May 22 22:28:58 2010
@@ -121,7 +121,9 @@ EOF
 
 _add_config_dir () {
     for file in "$1"/*.ini; do
-        [ -r "$file" ] && _add_config_file "$file"
+        if [ -r "$file" ]; then
+          _add_config_file "$file"
+        fi
     done
 }