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