Remove seed.zip after extraction

pull/95/head
Piero Toffanin 2019-10-01 23:07:15 -04:00
rodzic f539638cfa
commit ced6a83cba
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -292,7 +292,10 @@ module.exports = {
if (config.maxImages && files.length > config.maxImages) cb(`${files.length} images uploaded, but this node can only process up to ${config.maxImages}.`);
else cb(err);
});
}
},
// Remove
fs.unlink(seedFileDst, cb)
], cb);
}