notedeck

One damus client to rule them all
git clone git://jb55.com/notedeck
Log | Files | Refs | README | LICENSE

commit 4459238e52b909375b443dfba6d60619353240f3
parent 37591c3d2c7cb804b2a7e2574201974b7af2dde9
Author: William Casarin <jb55@jb55.com>
Date:   Sun, 22 Feb 2026 10:42:09 -0800

fmt: rustfmt fixups

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

Diffstat:
Mcrates/notedeck_dave/src/git_status.rs | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/crates/notedeck_dave/src/git_status.rs b/crates/notedeck_dave/src/git_status.rs @@ -185,8 +185,7 @@ fn parse_git_status(output: &str) -> GitStatusData { fn run_git_status(cwd: &Path) -> GitStatusResult { let mut cmd = std::process::Command::new("git"); - cmd.args(["status", "--short", "--branch"]) - .current_dir(cwd); + cmd.args(["status", "--short", "--branch"]).current_dir(cwd); #[cfg(target_os = "windows")] {