summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorTheArcaneBrony <myrainbowdash949@gmail.com>2023-01-13 13:09:09 +0100
committerTheArcaneBrony <myrainbowdash949@gmail.com>2023-01-13 13:09:09 +0100
commitaa8a6d6248b43477de3345eec736d15cef7da4f6 (patch)
treeca2a705fe7b9fab99f1ea9e8b956b111b5b0ce72 /scripts
parentMerge pull request #928 from fosscord/fix/guildtemplates (diff)
downloadserver-aa8a6d6248b43477de3345eec736d15cef7da4f6.tar.xz
Fix console fuckery to allow running in a headless terminal, and to fix flickering of output.
Signed-off-by: TheArcaneBrony <myrainbowdash949@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/client.js21
1 files changed, 8 insertions, 13 deletions
diff --git a/scripts/client.js b/scripts/client.js
index 32ccca00..980ff4bf 100644
--- a/scripts/client.js
+++ b/scripts/client.js
@@ -198,17 +198,15 @@ const processFile = async (name) => {
 	while (INDEX_SCRIPTS.length > 0) {
 		const asset = INDEX_SCRIPTS.shift();
 
-		process.stdout.clearLine(0);
-		process.stdout.cursorTo(0);
 		process.stdout.write(
-			`Scraping asset ${asset}. Remaining: ${INDEX_SCRIPTS.length}`,
+			`Scraping asset ${asset}. Remaining: ${INDEX_SCRIPTS.length}      \r`,
 		);
 
 		const newAssets = await processFile(asset);
 		assets.push(...newAssets);
 	}
 
-	process.stdout.moveCursor(0, 1);
+	console.log();
 
 	const CACHE_MISSES = (
 		await fs.readFile(path.join(CACHE_PATH, "..", "cacheMisses"))
@@ -219,10 +217,9 @@ const processFile = async (name) => {
 		.split("\n");
 	while (CACHE_MISSES.length > 0) {
 		const asset = CACHE_MISSES.shift();
-		process.stdout.clearLine(0);
-		process.stdout.cursorTo(0);
+
 		process.stdout.write(
-			`Scraping cache misses ${asset}. Remaining: ${CACHE_MISSES.length}`,
+			`Scraping cache misses ${asset}. Remaining: ${CACHE_MISSES.length}      \r`,
 		);
 
 		if (existsSync(path.join(CACHE_PATH, `${asset}`))) {
@@ -239,10 +236,8 @@ const processFile = async (name) => {
 	while (existing.length > 0) {
 		var file = existing.shift();
 
-		process.stdout.clearLine(0);
-		process.stdout.cursorTo(0);
 		process.stdout.write(
-			`Patching existing ${file}. Remaining: ${existing.length}.`,
+			`Patching existing ${file}. Remaining: ${existing.length}.      \r`,
 		);
 
 		var text = await fs.readFile(path.join(CACHE_PATH, file));
@@ -257,7 +252,7 @@ const processFile = async (name) => {
 		}
 	}
 
-	process.stdout.moveCursor(0, 1);
+	console.log();
 
 	let rates = [];
 	let lastFinished = Date.now();
@@ -278,8 +273,6 @@ const processFile = async (name) => {
 			: 1;
 		const finishTime = averageRate * (assets.length - i);
 
-		process.stdout.clearLine(0);
-		process.stdout.cursorTo(0);
 		process.stdout.write(
 			`Caching asset ${asset}. ` +
 				`${i}/${assets.length - 1} = ${Math.floor(
@@ -289,6 +282,8 @@ const processFile = async (name) => {
 			// 	Date.now() + finishTime,
 			// ).toLocaleTimeString()}`,
 		);
+		//not adding to the previous mess, incase the finish time is added back or something
+		process.stdout.write("      \r");
 
 		promises.push(processFile(asset));
 		// await processFile(asset);