From cd99b7f85635ad2a3f131c4fbe5b13cc4c6cd48e Mon Sep 17 00:00:00 2001 From: AnxietyisReal <96593068+AnxietyisReal@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)=>{