From aa2da5f4351e7b9f2a28279ae68b0f011b581b3e Mon Sep 17 00:00:00 2001 From: nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> Date: Mon, 27 Sep 2021 11:47:43 -0700 Subject: [PATCH] fix regex in json schema (#20386) thanks @SoftdriveFelix! Co-authored-by: nicole mazzuca --- scripts/vcpkg.schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/vcpkg.schema.json b/scripts/vcpkg.schema.json index 14848f00c8..7ee7a27aac 100644 --- a/scripts/vcpkg.schema.json +++ b/scripts/vcpkg.schema.json @@ -16,7 +16,7 @@ "not": { "description": "Identifiers must not be a Windows filesystem or vcpkg reserved name.", "type": "string", - "pattern": "^prn|aux|nul|con|lpt[1-9]|com[1-9]|core|default$" + "pattern": "^(prn|aux|nul|con|lpt[1-9]|com[1-9]|core|default)$" } } ]