We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b15956a + 3851448 commit d2b6ff4Copy full SHA for d2b6ff4
src/contributes/commands.ts
@@ -193,14 +193,15 @@ export function registerInstallCommandsCommand(
193
async () => {
194
const homePath = process.env.HOME || process.env.USERPROFILE || "";
195
const sysDirPath = path.join(homePath, ".chat", "scripts");
196
+ const sysMericoDirPath = path.join(homePath, ".chat", "scripts", "merico");
197
const pluginDirPath = path.join(
198
UiUtilWrapper.extensionPath(),
199
"workflowsCommands"
200
); // Adjust this path as needed
201
202
const dcClient = new DevChatClient();
203
- if (!fs.existsSync(sysDirPath)) {
204
+ if (!fs.existsSync(sysMericoDirPath)) {
205
await copyDirectory(pluginDirPath, sysDirPath);
206
}
207
0 commit comments