diff --git a/src/index.ts b/src/index.ts index a2f7614..959cbbf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -41,7 +41,7 @@ try { const totalRemoved = committedDiff.removed + uncommittedDiff.removed; const totalChanged = totalAdded + totalRemoved; - const output = `Total lines changed: ${totalChanged} (Committed: +${committedDiff.added}/-${committedDiff.removed}, Uncommitted: +${uncommittedDiff.added}/-${uncommittedDiff.removed})`; + const output = `Total lines changed: ${totalChanged}\nCommitted: +${committedDiff.added}/-${committedDiff.removed}\nUncommitted: +${uncommittedDiff.added}/-${uncommittedDiff.removed}`; console.clear(); console.log(output);