diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-13 13:12:12 +0100 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-01-13 13:12:12 +0100 |
commit | 1c4e6e6c911cd651550c7fe7a1591f468f0b9488 (patch) | |
tree | 88f7f77f4f2aa553a018243b2c2ac0509953bf38 | |
parent | Fix console fuckery to allow running in a headless terminal, and to fix flick... (diff) | |
download | server-1c4e6e6c911cd651550c7fe7a1591f468f0b9488.tar.xz |
Fix missed moveCursor call
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
-rw-r--r-- | scripts/client.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/client.js b/scripts/client.js index 980ff4bf..3cdd3719 100644 --- a/scripts/client.js +++ b/scripts/client.js @@ -230,7 +230,7 @@ const processFile = async (name) => { assets.push(...newAssets); } - process.stdout.moveCursor(0, 1); + console.log(); var existing = await fs.readdir(CACHE_PATH); while (existing.length > 0) { |