Skip to content

Commit 1722409

Browse files
committed
Fix regular expression some more
1 parent 8c49c85 commit 1722409

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/dev_repo.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ let repo_name_regexp =
1313
(seq [
1414
opt (char '/');
1515
rep (char '.');
16-
group (rep (compl [ char '.'; char '/' ]));
16+
group (rep1 (compl [ char '.'; char '/' ]));
1717
opt (seq [
1818
char '.';
1919
rep (compl [ char '/' ])]);

0 commit comments

Comments
 (0)