Merge pull request #592 from devchat-ai/fix_workflow_missed

fix: Correct workflow directory path
This commit is contained in:
Rankin Zheng 2024-09-10 11:43:44 +08:00 committed by GitHub
commit d2b6ff42ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,6 +193,7 @@ export function registerInstallCommandsCommand(
async () => {
const homePath = process.env.HOME || process.env.USERPROFILE || "";
const sysDirPath = path.join(homePath, ".chat", "scripts");
const sysMericoDirPath = path.join(homePath, ".chat", "scripts", "merico");
const pluginDirPath = path.join(
UiUtilWrapper.extensionPath(),
"workflowsCommands"
@ -200,7 +201,7 @@ export function registerInstallCommandsCommand(
const dcClient = new DevChatClient();
if (!fs.existsSync(sysDirPath)) {
if (!fs.existsSync(sysMericoDirPath)) {
await copyDirectory(pluginDirPath, sysDirPath);
}