strip suffix .git used typically for bare repos

This commit is contained in:
Hiltjo Posthuma 2015-12-26 12:57:33 +01:00
parent 3da41fa5dd
commit e4e03b3bf9

View file

@ -791,6 +791,9 @@ main(int argc, char *argv[])
p = xbasename(repodir);
snprintf(name, sizeof(name), "%s", p);
free(p);
/* remove .git suffix, typically used by bare repos */
if ((p = strstr(name, ".git")))
*p = '\0';
/* read description or .git/description */
snprintf(path, sizeof(path), "%s%s%s",