Skip to content
Snippets Groups Projects
Commit 0e1f858d authored by syuilo's avatar syuilo
Browse files

✌️

parent bcf28282
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ async function main() {
if (file == null) return skip();
log(chalk`{gray ${i}} scanning: {bold ${file._id}} ...`);
log(chalk`{gray ${i}} scanning {bold ${file._id}} ${file.filename} ...`);
const attachingUsersCount = await User.count({
$or: [{
......@@ -60,9 +60,9 @@ async function main() {
promise.then(([i, file, deleted]) => {
if (deleted) {
log(chalk`{gray ${i}} {red deleted: {bold ${file._id}}}`);
log(chalk`{gray ${i}} {red deleted: {bold ${file._id}} ${file.filename}}`);
} else {
log(chalk`{gray ${i}} {green skipped: {bold ${file._id}}}`);
log(chalk`{gray ${i}} {green skipped: {bold ${file._id}} ${file.filename}}`);
}
log.clear();
console.log();
......@@ -75,4 +75,6 @@ async function main() {
return await sequential(promiseGens);
}
main().then().catch(console.error);
main().then(() => {
console.log('done');
}).catch(console.error);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment