From dda2eb921ad0492dd8c59c533f305d9cfd63f422 Mon Sep 17 00:00:00 2001 From: Snazzah Date: Sat, 22 Jun 2024 17:02:13 -0500 Subject: [PATCH] small thing for the client --- client/index.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/client/index.ts b/client/index.ts index a5dfa6b..77dba48 100644 --- a/client/index.ts +++ b/client/index.ts @@ -8,6 +8,8 @@ import MDBReader from 'mdb-reader'; import { diff } from 'just-diff'; import { version } from './package.json'; +console.log(`FDLogUp Client v${version}`); + const rl = readline.createInterface({ input: process.stdin, output: process.stdout @@ -115,8 +117,5 @@ process.on("SIGINT", () => { }); rl.close(); - -console.log(`FDLogUp Client v${version}`); - // "Upload first" option if (process.argv[2] === '--upload') _upload();