From e9a92bd1bf32932cd47611d6efd9df6e18744427 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Wed, 22 Apr 2015 14:08:15 -0400 Subject: [PATCH] removed some compile scripts that we don't need --- install/web.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/install/web.js b/install/web.js index c61ae743a0..d1bfa2a1c5 100644 --- a/install/web.js +++ b/install/web.js @@ -13,9 +13,6 @@ var winston = require('winston'), var web = {}, scripts = [ - 'public/vendor/jquery/js/jquery.js', - 'public/vendor/bootstrap/js/bootstrap.min.js', - 'public/vendor/bootbox/bootbox.min.js', 'public/vendor/xregexp/xregexp.js', 'public/vendor/xregexp/unicode/unicode-base.js', 'public/src/utils.js', @@ -71,7 +68,7 @@ function welcome(req, res) { function install(req, res) { var env = {}; - + for (var i in req.body) { if (req.body.hasOwnProperty(i)) { env[i.replace(':', '__')] = req.body[i];