maybe better

This commit is contained in:
abs3nt 2025-03-05 10:48:32 -08:00
parent 7ff0cd043a
commit 3564f1c275
Signed by: abs3nt
GPG Key ID: A7BD96A8BAB04C09

@ -1,6 +1,3 @@
function _repo_list
for git_dir in (find "$REPO_BASE_DIR" -type d -name ".git")
set parent_dir (path dirname "$git_dir")
echo (path basename "$parent_dir" | string replace -a "." "_")
end
find "$REPO_BASE_DIR" -type d -name ".git" -printf "%h\n" | sed 's|.*/||; s/\./_/g'
end