Skip to content

Commit f823b00

Browse files
authored
Excluded luconfig.json from project load (microsoft#4648)
1 parent b5b323e commit f823b00

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

Composer/packages/server/src/models/bot/botProject.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,14 @@ export class BotProject implements IBotProject {
752752
// deployment process
753753
const root = this.dataDir;
754754
const paths = await this.fileStorage.glob(
755-
[pattern, '!(generated/**)', '!(runtime/**)', '!(scripts/**)', '!(settings/appsettings.json)'],
755+
[
756+
pattern,
757+
'!(generated/**)',
758+
'!(runtime/**)',
759+
'!(scripts/**)',
760+
'!(settings/appsettings.json)',
761+
'!(**/luconfig.json)',
762+
],
756763
root
757764
);
758765

0 commit comments

Comments
 (0)