From 0d3d254dee752c920eb19e23886805b2b6eae620 Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Fri, 12 Apr 2024 17:50:18 +0200 Subject: [PATCH] update message --- main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.ts b/main.ts index 205c053..4467e1a 100755 --- a/main.ts +++ b/main.ts @@ -12,7 +12,7 @@ async function main() { const client = new ApiClient("gitlab.cri.epita.fr", token); const merge_requests = await get_all_merge_requests(client); const total = sum(await parallel(merge_requests, (mr) => count_in_mr(mr, client))); - console.log("Total 'oki'", total); + console.log("Total", total, "oki"); } function parse_args(args: string[]) {