From 50063fe23805d6e4704e172ea21e1c756f300234 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bar=C4=B1=C5=9F=20Soner=20U=C5=9Fakl=C4=B1?= Date: Mon, 29 Nov 2021 15:17:02 -0500 Subject: [PATCH] fix: regression from https://github.com/NodeBB/NodeBB/commit/27c05448e1532ce466658513af0e2ff65576b410 --- src/cli/setup.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/setup.js b/src/cli/setup.js index ed66cc8bbf..51245c9262 100644 --- a/src/cli/setup.js +++ b/src/cli/setup.js @@ -4,7 +4,7 @@ const winston = require('winston'); const path = require('path'); const nconf = require('nconf'); -const { webInstall } = require('../../install/web'); +const { install } = require('../../install/web'); async function setup(initConfig) { const { paths } = require('../constants'); @@ -57,4 +57,4 @@ async function setup(initConfig) { } exports.setup = setup; -exports.webInstall = webInstall; +exports.webInstall = install;