Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 2576D200C4E for ; Fri, 21 Apr 2017 23:34:20 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 213BD160B97; Fri, 21 Apr 2017 21:34:20 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 90073160B86 for ; Fri, 21 Apr 2017 23:34:19 +0200 (CEST) Received: (qmail 46949 invoked by uid 500); 21 Apr 2017 21:34:18 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 46940 invoked by uid 99); 21 Apr 2017 21:34:18 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Apr 2017 21:34:18 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 9802C865BB; Fri, 21 Apr 2017 21:34:17 +0000 (UTC) Date: Fri, 21 Apr 2017 21:34:17 +0000 To: "commits@couchdb.apache.org" Subject: [couchdb] branch master updated: fix dev/run script for new default.d/local.d dirs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <149281045734.15967.17271366831237016274@gitbox.apache.org> From: wohali@apache.org Reply-To: "commits@couchdb.apache.org" X-Git-Host: gitbox.apache.org X-Git-Repo: couchdb X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 7c3c66e3c0b63343ab5abb225ab917fab3197845 X-Git-Newrev: b6a951b8bbda1ac8584520e39bfac38cf5b2b5d3 X-Git-Rev: b6a951b8bbda1ac8584520e39bfac38cf5b2b5d3 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.3.dev Auto-Submitted: auto-generated archived-at: Fri, 21 Apr 2017 21:34:20 -0000 This is an automated email from the ASF dual-hosted git repository. wohali pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb.git The following commit(s) were added to refs/heads/master by this push: new b6a951b fix dev/run script for new default.d/local.d dirs b6a951b is described below commit b6a951b8bbda1ac8584520e39bfac38cf5b2b5d3 Author: Joan Touzet AuthorDate: Fri Apr 21 17:34:02 2017 -0400 fix dev/run script for new default.d/local.d dirs --- dev/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/run b/dev/run index 94f06ef..2cf48a4 100755 --- a/dev/run +++ b/dev/run @@ -199,7 +199,7 @@ def write_config(ctx, node, env): etc_src = os.path.join(ctx['rootdir'], "rel", "overlay", "etc") etc_tgt = ensure_dir_exists(ctx['devdir'], "lib", node, "etc") - for fname in glob.glob(os.path.join(etc_src, "*")): + for fname in glob.glob(os.path.join(etc_src, "*.ini")): base = os.path.basename(fname) tgt = os.path.join(etc_tgt, base) -- To stop receiving notification emails like this one, please contact ['"commits@couchdb.apache.org" '].