Skip to content

Commit 0e49f14

Browse files
committed
chore(parser,git): Add explicit match to git URLs
1 parent e1810d1 commit 0e49f14

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libvcs/parse/git.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@
136136
""",
137137
re.VERBOSE,
138138
),
139+
is_explicit=True,
139140
),
140141
Matcher(
141142
label="pip-scp-url",
@@ -149,6 +150,7 @@
149150
""",
150151
re.VERBOSE,
151152
),
153+
is_explicit=True,
152154
),
153155
# file://, RTC 8089, File:// https://datatracker.ietf.org/doc/html/rfc8089
154156
Matcher(
@@ -162,6 +164,7 @@
162164
""",
163165
re.VERBOSE,
164166
),
167+
is_explicit=True,
165168
),
166169
]
167170
"""pip-style git URLs.

0 commit comments

Comments
 (0)