Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions extensions/azurePublish/src/node/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,6 @@ export default async (composer: IExtensionRegistration): Promise<void> => {
) => {
const { subscriptionID, accessToken, name, environment, hostname, luisResource, abs } = customizeConfiguration;

const mode = this.getRuntimeTemplateMode(runtime?.key);

// Create the BotProjectDeploy object, which is used to carry out the deploy action.
const azDeployer = new BotProjectDeploy({
logger: (msg: any, ...args: any[]) => {
Expand Down
14 changes: 0 additions & 14 deletions extensions/localPublish/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,23 +120,9 @@ class LocalPublisher implements PublishPlugin<PublishConfig> {

await this.initBot(project);
await this.saveContent(botId, version, project.dataDir, user);
await runtime.setSkillManifest(
this.getBotRuntimeDir(botId),
project.fileStorage,
this.getManifestSrcDir(project.dataDir),
project.fileStorage,
'azurewebapp'
);
} else if (project.settings.runtime.path && project.settings.runtime.command) {
const runtimePath = project.getRuntimePath();
await runtime.build(runtimePath, project);
await runtime.setSkillManifest(
project.settings.runtime.path,
project.fileStorage,
this.getManifestSrcDir(project.dataDir),
project.fileStorage,
'azurewebapp'
);
} else {
throw new Error('Custom runtime settings are incomplete. Please specify path and command.');
}
Expand Down