From 4db3329d686ac7b1dec219149ef7b7d19c572c48 Mon Sep 17 00:00:00 2001
From: abs3nt <abs3nt@asdf.cafe>
Date: Wed, 5 Mar 2025 10:50:25 -0800
Subject: [PATCH] no errors

---
 functions/_repo_list.fish | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/functions/_repo_list.fish b/functions/_repo_list.fish
index 34ad9d1..cede54d 100644
--- a/functions/_repo_list.fish
+++ b/functions/_repo_list.fish
@@ -1,3 +1,3 @@
 function _repo_list
-    find "$REPO_BASE_DIR" -type d -name ".git" -printf "%h\n" | sed 's|.*/||; s/\./_/g'
+    find "$REPO_BASE_DIR" -type d -name ".git" -printf "%h\n" 2>/dev/null | sed 's|.*/||; s/\./_/g'
 end