commit 4aca08444b546e7d4921d589d5581fde9f88cdc8
Author: Ben Sima <ben@bensima.com>
Date: Tue Nov 25 22:41:41 2025
fix(jr): review command git show args
Task-Id: t-1o2g8gu6p8o
diff --git a/Omni/Jr.hs b/Omni/Jr.hs
index 56cabd18..bae55883 100644
--- a/Omni/Jr.hs
+++ b/Omni/Jr.hs
@@ -144,9 +144,7 @@ reviewTask tid = do
[] -> ""
putText "\n=== Diff for this task ===\n"
- _ <- Process.rawSystem "git" ["show", "--stat", commitSha]
- putText ""
- _ <- Process.rawSystem "git" ["show", "--no-stat", commitSha]
+ _ <- Process.rawSystem "git" ["show", commitSha]
putText "\n[a]ccept / [r]eject / [s]kip? "
IO.hFlush IO.stdout