From 4b50ab332e889a3095f616d089e4a5a37d3b94f5 Mon Sep 17 00:00:00 2001 From: Torin Date: Fri, 24 Nov 2023 14:45:33 -0600 Subject: [PATCH] Update main.js --- tools/bundle/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/bundle/main.js b/tools/bundle/main.js index 1ac86c9..e963d71 100644 --- a/tools/bundle/main.js +++ b/tools/bundle/main.js @@ -103,11 +103,11 @@ const args = [Bundle.Base, "tools/bundle/output/"]; try { if (process.cwd().endsWith("dll")) process.chdir("../"); - const start = performance.now(); + //const start = performance.now(); if (Program.main(...args) === false) { throw `An unknown error has occured`; } - Logger.info(`Script execution completed successfully in ${Math.round(performance.now() - start)}ms`); + Logger.info(`Script execution completed successfully in ${Math.round(0 - start)}ms`); } catch (e) { Logger.error(`An error has occured:\n- ${e}`); process.exit(1);