Adding some semicolon back.
This commit is contained in:
parent
576b9581ab
commit
3a3a1e2546
4 changed files with 5 additions and 4 deletions
|
@ -79,7 +79,7 @@ export class GBDeployer {
|
|||
let additionalPath = GBConfigService.get("ADDITIONAL_DEPLOY_PATH")
|
||||
let paths = [GBDeployer.deployFolder]
|
||||
if (additionalPath) {
|
||||
paths = paths.concat(additionalPath.toLowerCase().split(""))
|
||||
paths = paths.concat(additionalPath.toLowerCase().split(";"))
|
||||
}
|
||||
let botPackages = new Array<string>()
|
||||
let gbappPackages = new Array<string>()
|
||||
|
|
|
@ -229,7 +229,8 @@ export class GBMinService {
|
|||
|
||||
private invokeLoadBot(appPackages: any[], min: any, server: any) {
|
||||
appPackages.forEach(e => {
|
||||
e.sysPackages = new Array<IGBPackage>()
|
||||
e.sysPackages = new Array<IGBPackage>();
|
||||
|
||||
[
|
||||
GBAdminPackage,
|
||||
GBAnalyticsPackage,
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
| in the LICENSE file you have received along with this program. |
|
||||
| |
|
||||
| This program is distributed in the hope that it will be useful, |
|
||||
| but WITHOUT ANY WARRANTY without even the implied warranty of |
|
||||
| but WITHOUT ANY WARRANTY, without even the implied warranty of |
|
||||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
||||
| GNU Affero General Public License for more details. |
|
||||
| |
|
||||
|
|
|
@ -98,7 +98,7 @@ export class GBServer {
|
|||
// Build a minimal bot instance for each .gbot deployment.
|
||||
|
||||
let conversationalService = new GBConversationalService(core)
|
||||
let minService = new GBMinService(core, conversationalService, deployer)
|
||||
let minService = new GBMinService(core, conversationalService, deployer);
|
||||
|
||||
[GBAdminPackage, GBAnalyticsPackage, GBCorePackage, GBSecurityPackage,
|
||||
GBKBPackage, GBCustomerSatisfactionPackage, GBWhatsappPackage].forEach(e => {
|
||||
|
|
Loading…
Add table
Reference in a new issue