diff --git a/src/command.rs b/src/command.rs index 0e329a88..d76d210e 100644 --- a/src/command.rs +++ b/src/command.rs @@ -279,10 +279,10 @@ pub async fn publish( #[cfg(feature = "git")] async fn git_statuses() -> miette::Result> { use std::process::Stdio; - let output = tokio::process::Command::new("git") .arg("status") .arg("--porcelain") + .arg("Proto.toml,proto/*.proto") .stderr(Stdio::null()) .output() .await;