Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit ab14e9a

Browse files
authored
Merge pull request #2120 from rainers/issue18537
fix Issue 18537 - Cannot pass absolute path to coverage options
2 parents 86cd40a + feb6e9b commit ab14e9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/internal/parseoptions.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ bool parse(const(char)[] optname, ref inout(char)[] str, ref inout(char)[] res,
211211
in { assert(str.length); }
212212
do
213213
{
214-
auto tail = str.find!(c => c == ':' || c == '=' || c == ' ');
214+
auto tail = str.find!(c => c == ' ');
215215
res = str[0 .. $ - tail.length];
216216
if (!res.length)
217217
return parseError("an identifier", optname, str, errName);

0 commit comments

Comments
 (0)