修改 schedule 服务代理环境变量

This commit is contained in:
whyour
2023-12-10 21:53:23 +08:00
parent 95afcbc9dd
commit be1d68c0d1
6 changed files with 21 additions and 5 deletions
+6 -4
View File
@@ -8,10 +8,12 @@ async function linkToNodeModule(src: string, dst?: string) {
const target = path.join(config.rootPath, 'node_modules', dst || src);
const source = path.join(config.rootPath, src);
const stats = await fs.lstat(target);
if (!stats) {
await fs.symlink(source, target, 'dir');
}
try {
const stats = await fs.lstat(target);
if (!stats) {
await fs.symlink(source, target, 'dir');
}
} catch (error) {}
}
async function linkCommand() {