fix(docset): resolve error during docset file generation. #601
This commit is contained in:
parent
4249725673
commit
16c4a08fde
|
|
@ -118,7 +118,9 @@ async function build() {
|
||||||
|
|
||||||
console.info('compressing tgz');
|
console.info('compressing tgz');
|
||||||
// https://github.com/node-modules/compressing/issues/42 建议最好休眠15s,等待其余资源复制完毕
|
// https://github.com/node-modules/compressing/issues/42 建议最好休眠15s,等待其余资源复制完毕
|
||||||
spawn("sleep", ['15'])
|
// 确保所有操作完成后再压缩
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 30000)); // 增加到 30 秒
|
||||||
|
|
||||||
const outputPath = pathJoin(process.cwd(), '.deploy', 'linux-command.docset.tgz');
|
const outputPath = pathJoin(process.cwd(), '.deploy', 'linux-command.docset.tgz');
|
||||||
await tgz.compressDir(DOCSET_DIR, outputPath);
|
await tgz.compressDir(DOCSET_DIR, outputPath);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue