summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-02-01 12:40:38 +1100
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2023-02-01 12:40:38 +1100
commit72c0319a9fcc63b0b569ac5397129e1c4978599b (patch)
treeeca3e0d00bce79d04d4dd86f124cf061a51b6981
parentRename postgresql to postgres -> fix silently failing migrations (diff)
downloadserver-72c0319a9fcc63b0b569ac5397129e1c4978599b.tar.xz
use print instead of console.log in client cache so it doesn't output weirdness
-rw-r--r--scripts/client.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/client.js b/scripts/client.js
index 8cbc15b1..1320cb2c 100644
--- a/scripts/client.js
+++ b/scripts/client.js
@@ -260,5 +260,5 @@ const processFile = async (asset) => {
 		}
 	}
 
-	console.log("done");
+	print("done");
 })();