fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 003d66a662 - Show all commits

View file

@ -174,7 +174,7 @@ export class GBDeployer implements IGBDeployer {
// Start the process of searching. // Start the process of searching.
GBLog.info(`Starting looking for packages (.gbot, .gbtheme, .gbkb, .gbapp)...`); GBLog.info(`Deploying Application Packages...`);
await CollectionUtil.asyncForEach(paths, async e => { await CollectionUtil.asyncForEach(paths, async e => {
GBLog.info(`Looking in: ${e}...`); GBLog.info(`Looking in: ${e}...`);
await scanPackageDirectory(e); await scanPackageDirectory(e);

View file

@ -184,7 +184,7 @@ export class GBServer {
// Deploys system and user packages. // Deploys system and user packages.
GBLog.info(`Deploying packages...`); GBLog.info(`Deploying System packages...`);
GBServer.globals.sysPackages = await core.loadSysPackages(core); GBServer.globals.sysPackages = await core.loadSysPackages(core);
GBLog.info(`Connecting to Bot Storage...`); GBLog.info(`Connecting to Bot Storage...`);
await core.checkStorage(azureDeployer); await core.checkStorage(azureDeployer);