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[]) {