diff options
author | EuAndreh <eu@euandre.org> | 2022-10-27 18:28:43 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-10-27 18:28:43 -0300 |
commit | ca071914122238cece5e365e6363d75aba264b9a (patch) | |
tree | 41c9599cc2c9a1d3a2dc0acd293741db884cd617 /bin/repos | |
parent | etc/sh/root-rc: Add /root/.profile contents (diff) | |
download | dotfiles-ca071914122238cece5e365e6363d75aba264b9a.tar.gz dotfiles-ca071914122238cece5e365e6363d75aba264b9a.tar.xz |
bin/repos: Fix guessing of repository type for Fossil
Diffstat (limited to 'bin/repos')
-rwxr-xr-x | bin/repos | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |