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 6F767200C3E for ; Tue, 21 Mar 2017 14:37:15 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 6DECF160B74; Tue, 21 Mar 2017 13:37:15 +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 DADAB160B68 for ; Tue, 21 Mar 2017 14:37:14 +0100 (CET) Received: (qmail 13858 invoked by uid 500); 21 Mar 2017 13:37:14 -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 13848 invoked by uid 99); 21 Mar 2017 13:37:14 -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; Tue, 21 Mar 2017 13:37:14 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id F097481647; Tue, 21 Mar 2017 13:37:12 +0000 (UTC) Date: Tue, 21 Mar 2017 13:37:12 +0000 To: "commits@couchdb.apache.org" Subject: [couchdb-fauxton] branch master updated: Fix const error in devserver MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <149010343267.18267.10494296252517539181@gitbox.apache.org> From: garren@apache.org Reply-To: "commits@couchdb.apache.org" X-Git-Host: gitbox.apache.org X-Git-Repo: couchdb-fauxton X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 72d13444bbf6bc386c837068581548376df0d20a X-Git-Newrev: 2baf3a0f30c91741a8030910bd2c1ca05d538583 X-Git-Rev: 2baf3a0f30c91741a8030910bd2c1ca05d538583 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.3.dev Auto-Submitted: auto-generated archived-at: Tue, 21 Mar 2017 13:37:15 -0000 This is an automated email from the ASF dual-hosted git repository. garren pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git The following commit(s) were added to refs/heads/master by this push: new 2baf3a0 Fix const error in devserver 2baf3a0 is described below commit 2baf3a0f30c91741a8030910bd2c1ca05d538583 Author: Garren Smith AuthorDate: Tue Mar 21 15:37:02 2017 +0200 Fix const error in devserver --- devserver.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devserver.js b/devserver.js index dd8f328..692650d 100644 --- a/devserver.js +++ b/devserver.js @@ -27,7 +27,7 @@ const settings = loadSettings(); const devSetup = function (cb) { console.log('setup dev environment'); - const cmd = 'devSetupWithClean'; + let cmd = 'devSetupWithClean'; if (settings.noClean) { cmd = 'devSetup'; } -- To stop receiving notification emails like this one, please contact ['"commits@couchdb.apache.org" '].