Skip to content

Commit

Permalink
fix: Copy skill manifests to the correct directory in the localPublis…
Browse files Browse the repository at this point in the history
…h plugin (microsoft#2932)
  • Loading branch information
tdurnford authored May 7, 2020
1 parent 5afd31a commit 6fd27ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Composer/plugins/localPublish/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class LocalPublisher implements PublishPlugin<PublishConfig> {

private getManifestSrcDir = (srcDir: string) => path.resolve(srcDir, 'manifests');

private getManifestDstDir = (botId: string) => path.resolve(this.getBotRuntimeDir(botId), 'wwwroot', 'manifests');
private getManifestDstDir = (botId: string) => path.resolve(this.getBotRuntimeDir(botId), 'azurewebapp', 'wwwroot', 'manifests');

private getDownloadPath = (botId: string, version: string) =>
path.resolve(this.getHistoryDir(botId), `${version}.zip`);
Expand Down

0 comments on commit 6fd27ac

Please sign in to comment.