You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2009/04/21 18:26:15 UTC

svn commit: r767208 - /couchdb/trunk/bin/couchdb.tpl.in

Author: nslater
Date: Tue Apr 21 16:26:14 2009
New Revision: 767208

URL: http://svn.apache.org/viewvc?rev=767208&view=rev
Log:
added -maxdepth 1 to configuration directory find invokation

Modified:
    couchdb/trunk/bin/couchdb.tpl.in

Modified: couchdb/trunk/bin/couchdb.tpl.in
URL: http://svn.apache.org/viewvc/couchdb/trunk/bin/couchdb.tpl.in?rev=767208&r1=767207&r2=767208&view=diff
==============================================================================
--- couchdb/trunk/bin/couchdb.tpl.in (original)
+++ couchdb/trunk/bin/couchdb.tpl.in Tue Apr 21 16:26:14 2009
@@ -122,7 +122,7 @@
 }
 
 _add_config_dir () {
-    for file in `find "$1" -mindepth 1 -type f`; do
+    for file in `find "$1" -mindepth 1 -maxdepth 1 -type f`; do
         _add_config_file $file
     done
 }