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 | c73f4ace246209d685b044a0fbfcf5627b6af0b5 (patch) | |
tree | 13aa644c8e723bd67ceb649019c4737bc2e65875 | |
parent | Fix console fuckery to allow running in a headless terminal, and to fix flick... (diff) | |
download | server-c73f4ace246209d685b044a0fbfcf5627b6af0b5.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) { |