From 39edaf3b83f1609307eab9f5d7260d45bdee73dd Mon Sep 17 00:00:00 2001 From: lyn Date: Mon, 13 Apr 2026 13:20:35 +0000 Subject: [PATCH] Use .git URL format in list-projs --- git-hangman-lab/scripts/list-projs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-hangman-lab/scripts/list-projs b/git-hangman-lab/scripts/list-projs index d5608c5..fe95b79 100755 --- a/git-hangman-lab/scripts/list-projs +++ b/git-hangman-lab/scripts/list-projs @@ -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 \ No newline at end of file