From ca071914122238cece5e365e6363d75aba264b9a Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Thu, 27 Oct 2022 18:28:43 -0300 Subject: bin/repos: Fix guessing of repository type for Fossil --- bin/repos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/repos b/bin/repos index 27e0879..12fd697 100755 --- a/bin/repos +++ b/bin/repos @@ -144,7 +144,7 @@ is_repository() { elif [ -e "$1"/CVS/ ]; then printf 'cvs:%s\n' "$1" return 0 - elif [ -e "$1"/"$(basename "$1")".fossil ]; then + elif [ -e "$1"/.fslckout ]; then printf 'fossil:%s\n' "$1" return 0 fi -- cgit v1.2.3