删除 多余输出

This commit is contained in:
Suwings 2022-05-23 15:33:16 +08:00
parent e77f8c868f
commit 3130d34292

View File

@ -113,7 +113,6 @@ function haveLinuxZip() {
async function linuxUnzip(sourceZip: string, destDir: string) {
return new Promise((resolve, reject) => {
console.log("linuxUnzip:", [sourceZip, "-d", destDir]);
const process = child_process.spawn("unzip", [sourceZip, "-d", destDir], {
cwd: path.normalize(path.dirname(sourceZip))
});