This commit is contained in:
abs3nt 2025-03-05 11:10:25 -08:00
parent 062cd84d38
commit 5705a8034d
Signed by: abs3nt
GPG Key ID: A7BD96A8BAB04C09

@ -1,3 +1,5 @@
function _repo_list
find "$REPO_BASE_DIR" -type d -name ".git" -printf "%h\n" 2>/dev/null | sed 's|.*/||; s/\./_/g'
find "$REPO_BASE_DIR" -type d -name ".git" -printf "%h\n" 2>/dev/null | while read -l dir
echo (string replace -a '.' '_' (basename "$dir"))
end
end