This commit is contained in:
parent
26faab6a84
commit
8763dc32c4
|
@ -90,17 +90,14 @@ module.exports = Self => {
|
||||||
scrubDirCreated = true;
|
scrubDirCreated = true;
|
||||||
}
|
}
|
||||||
const dstFile = path.join(scrubSizeDir, image);
|
const dstFile = path.join(scrubSizeDir, image);
|
||||||
if (!dryRun)
|
if (!dryRun) await fs.rename(srcFile, dstFile);
|
||||||
await fs.rename(srcFile, dstFile);
|
|
||||||
} else {
|
} else {
|
||||||
if (!dryRun) {
|
|
||||||
try {
|
try {
|
||||||
await fs.unlink(srcFile);
|
if (!dryRun) await fs.unlink(srcFile);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
cleanCount++;
|
cleanCount++;
|
||||||
if (limit && cleanCount == limit)
|
if (limit && cleanCount == limit)
|
||||||
|
|
Loading…
Reference in New Issue