Use .git URL format in list-projs

This commit is contained in:
lyn
2026-04-13 13:20:35 +00:00
parent 8fed12b3ab
commit 39edaf3b83

View File

@@ -52,5 +52,5 @@ echo "|------------|-------|-----|-----------|"
echo "$RESULT" | while IFS=$'\t' read -r name owner is_private can_write; do
can_write_val=$([[ "$can_write" == "1" ]] && echo "yes" || echo "no")
echo "| $name | $owner | https://git.hangman-lab.top/$owner/$name | $can_write_val |"
echo "| $name | $owner | https://git.hangman-lab.top/$owner/$name.git | $can_write_val |"
done