From 643cf35448fd78866092421c90e5fc4fe6aa6af1 Mon Sep 17 00:00:00 2001 From: Fredrik Mikal Wold Date: Mon, 22 Dec 2025 22:56:02 +0100 Subject: [PATCH] fix: stop paging git diff output when running omarchy-update (#3959) * fix: stop paging git diff output when running omarchy-update * Keep option list similar between the two --------- Co-authored-by: David Heinemeier Hansson --- bin/omarchy-update-git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-update-git b/bin/omarchy-update-git index 3eca676f..8fef3a19 100755 --- a/bin/omarchy-update-git +++ b/bin/omarchy-update-git @@ -5,4 +5,4 @@ set -e echo -e "\e[32mUpdate Omarchy\e[0m" git -C $OMARCHY_PATH pull --autostash -git -C $OMARCHY_PATH diff --check || git -C $OMARCHY_PATH reset --merge +git -C $OMARCHY_PATH --no-pager diff --check || git -C $OMARCHY_PATH reset --merge