mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-05 05:17:51 +08:00
tab characters instead of spaces
This commit is contained in:
parent
c4c236a691
commit
f49d4b9aa2
1 changed files with 2 additions and 2 deletions
|
@ -217,13 +217,13 @@ async function migrateUsers() {
|
|||
);
|
||||
fs.appendFileSync(
|
||||
"log_success.txt",
|
||||
`${uid} ${userData.name} ${total} \n`,
|
||||
`${uid}\t\t${userData.name}\t\t${total}\n`,
|
||||
"utf8"
|
||||
);
|
||||
} catch (err) {
|
||||
console.log(`${uid} failed`);
|
||||
console.log(err);
|
||||
fs.appendFileSync("log_failed.txt", `${uid} ${err.message} \n`, "utf8");
|
||||
fs.appendFileSync("log_failed.txt", `${uid}\t\t${err.message}\n`, "utf8");
|
||||
}
|
||||
fs.writeFileSync("lastId.txt", uid, "utf8");
|
||||
let userend = performance.now();
|
||||
|
|
Loading…
Reference in a new issue