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:18:53 UTC

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

Author: nslater
Date: Tue Apr 21 16:18:52 2009
New Revision: 767204

URL: http://svn.apache.org/viewvc?rev=767204&view=rev
Log:
only pick up files in configuration directories

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=767204&r1=767203&r2=767204&view=diff
==============================================================================
--- couchdb/trunk/bin/couchdb.tpl.in (original)
+++ couchdb/trunk/bin/couchdb.tpl.in Tue Apr 21 16:18:52 2009
@@ -121,7 +121,7 @@
 }
 
 _add_config_dir () {
-    for file in `find "$1" -mindepth 1`; do
+    for file in `find "$1" -mindepth 1 -type f`; do
         _add_config_file $file
     done
 }