You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2017/03/21 13:37:12 UTC

[couchdb-fauxton] branch master updated: Fix const error in devserver

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 <ga...@gmail.com>
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" <co...@couchdb.apache.org>'].