diff --git a/vibi-dpu/src/utils/gitops.rs b/vibi-dpu/src/utils/gitops.rs index a6e1b282..6f33b2eb 100644 --- a/vibi-dpu/src/utils/gitops.rs +++ b/vibi-dpu/src/utils/gitops.rs @@ -159,7 +159,7 @@ fn process_statoutput(statstr: &str) -> Option<(Vec, Vec)>{ if (item.additions > line_threshold) || (item.deletions > line_threshold) || (item.additions + item.deletions > line_threshold) || - (item.deletions < 0) { + (item.deletions < 1) { excluded_files.push(item); } else {