From 07dc9ec2a9983e59ea74a2b9dd904d68d515045d Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Thu, 8 May 2014 22:20:48 +0200 Subject: [PATCH] Don't allow target in include/exclude_packages Fix indentation in schema --- bootstrapvz/base/manifest-schema.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bootstrapvz/base/manifest-schema.json b/bootstrapvz/base/manifest-schema.json index 15bb1aa..066c175 100644 --- a/bootstrapvz/base/manifest-schema.json +++ b/bootstrapvz/base/manifest-schema.json @@ -15,16 +15,16 @@ "include_packages": { "type": "array", "items": { - "type": "string", - "pattern": "^[^/]+(/[^/]+)?$" + "type": "string", + "pattern": "^[^/]+$" }, "minItems": 1 }, "exclude_packages": { "type": "array", "items": { - "type": "string", - "pattern": "^[^/]+(/[^/]+)?$" + "type": "string", + "pattern": "^[^/]+$" }, "minItems": 1 }