From 7d72b8042ebaa2c92e9fa064fb07e691cff54192 Mon Sep 17 00:00:00 2001 From: khanism Date: Sun, 21 Jul 2024 23:33:28 +0200 Subject: [PATCH] Fix: Ignore vendor packages under proto directory --- src/command.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;