diff options
| author | nicole mazzuca <83086508+strega-nil-ms@users.noreply.github.com> | 2021-09-27 11:47:43 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-27 11:47:43 -0700 |
| commit | aa2da5f4351e7b9f2a28279ae68b0f011b581b3e (patch) | |
| tree | 75400449eb046b22b9c7b365f8aa2677725c2de0 | |
| parent | 59a3f35e7e5a3281e59863a4a0123c325899f8f9 (diff) | |
| download | vcpkg-aa2da5f4351e7b9f2a28279ae68b0f011b581b3e.tar.gz vcpkg-aa2da5f4351e7b9f2a28279ae68b0f011b581b3e.zip | |
fix regex in json schema (#20386)
thanks @SoftdriveFelix!
Co-authored-by: nicole mazzuca <mazzucan@outlook.com>
| -rw-r--r-- | scripts/vcpkg.schema.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vcpkg.schema.json b/scripts/vcpkg.schema.json index 14848f00c..7ee7a27aa 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)$" } } ] |
