From 026b34b811f7ffd04c1421fc24d82b62aea9e2c9 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Sun, 7 Jan 2024 20:49:49 +1100 Subject: [PATCH] Also fix stupidity --- src/commands/dev.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/dev.ts b/src/commands/dev.ts index 763c84a..6a2354e 100644 --- a/src/commands/dev.ts +++ b/src/commands/dev.ts @@ -67,8 +67,8 @@ export default class Developer { `Message: **${repoData.commit.message.length === 0 ? '*No commit message*' : repoData.commit.message}**`, `Author: **${repoData.commit.author.name}**`, 'Changes', - `╰ ${commitStats.addition.length > 1 ? `Additions:` : 'Addition:'} **${commitStats.addition}**`, - `╰ ${commitStats.deletion.length > 1 ? `Deletions:` : 'Deletion:'} **${commitStats.deletion}**`, + `╰ Additions: **${commitStats.addition}**`, + `╰ Deletions: **${commitStats.deletion}**`, `╰ Total: **${commitStats.total}**` ); exec('git pull', {windowsHide:true}, (err:Error, stdout)=>{