From 398dbdf8297db48a77ba216558b4452897b488cb Mon Sep 17 00:00:00 2001 From: TJ Durnford Date: Wed, 6 May 2020 18:51:46 -0600 Subject: [PATCH] fix: Copy skill manifests to the correct directory in the localPublish plugin (#2932) --- Composer/plugins/localPublish/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Composer/plugins/localPublish/src/index.ts b/Composer/plugins/localPublish/src/index.ts index 2297f2eda5..a6dbc17959 100644 --- a/Composer/plugins/localPublish/src/index.ts +++ b/Composer/plugins/localPublish/src/index.ts @@ -127,7 +127,7 @@ class LocalPublisher implements PublishPlugin { 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`);