aboutsummaryrefslogtreecommitdiff
path: root/update.js
diff options
context:
space:
mode:
Diffstat (limited to 'update.js')
-rw-r--r--update.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/update.js b/update.js
index c946304..9a0c027 100644
--- a/update.js
+++ b/update.js
@@ -9,7 +9,9 @@ async function buildDB(dbconnection, shiftPath, ...classfiles)
shiftCont = shiftCont.toString("utf-8").replaceAll("\r", ""); // \r because of the \r\n newline on windows which may create problems
await parseClasses(dbconnection, ...classfiles),
+ console.log("Classes updated.");
await parse.build(shiftCont, dbconnection)
+ console.log("Shifts updated.");
return 0;
}