Skip to content

Commit

Permalink
[vcpkg] link documentation when using bad identifiers (microsoft#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan authored Feb 24, 2021
1 parent de18b82 commit d67989b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/vcpkg/base/json.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1372,7 +1372,10 @@ namespace vcpkg::Json
{
if (!is_ident(sv))
{
r.add_generic_error(type_name(), "must be lowercase alphanumeric+hyphens and not reserved");
r.add_generic_error(type_name(),
"must be lowercase alphanumeric+hyphens and not reserved (see "
"https://github.com/Microsoft/vcpkg/tree/master/docs/specifications/manifests.md for "
"more information)");
}
return sv.to_string();
}
Expand Down

0 comments on commit d67989b

Please sign in to comment.