Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Commit a355b51

Browse files
fix className issue (#3379)
Co-authored-by: Luis Sergio <[email protected]>
1 parent 4cb47b8 commit a355b51

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

tools/botskills/src/functionality/refreshSkill.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ export class RefreshSkill {
6464
this.logger.message(`Running Luis Generate for ${ dispatchName }...`);
6565
const luisGenerateCommandArguments: string [] = [
6666
'--in',
67-
'--out'
67+
'--out',
68+
'--className'
6869
];
6970
luisGenerateCommandArguments.forEach((argument: string): void => {
7071
const argumentValue: string = executionModelByCulture.get(argument) as string;
@@ -99,7 +100,8 @@ Remember to use the argument '--dispatchFolder' for your Assistant's Dispatch fo
99100
executionModelMap.set('--dataFolder', dataFolder);
100101
executionModelMap.set('--in', wrapPathWithQuotes(dispatchJsonFilePath));
101102
executionModelMap.set('--out', wrapPathWithQuotes(this.configuration.lgOutFolder));
102-
103+
executionModelMap.set('--className', 'DispatchLuis');
104+
103105
return executionModelMap;
104106
}
105107

0 commit comments

Comments
 (0)