From 9470cb6e86c05718b135b80cefd1794ea9db7f84 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 18 Jun 2021 19:38:37 +0200 Subject: [PATCH] stages/copy: fix indent for schema Re-indent sub-schema for "paths", which was mis-indented. --- stages/org.osbuild.copy | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/stages/org.osbuild.copy b/stages/org.osbuild.copy index f8170601..cc477d77 100755 --- a/stages/org.osbuild.copy +++ b/stages/org.osbuild.copy @@ -27,28 +27,28 @@ SCHEMA_2 = r""" "required": ["paths"], "properties": { "paths": { - "description": "Array of items to copy", - "type": "array", - "minItems": 1, - "items": { - "type": "object", - "additionalProperties": false, - "required": ["from", "to"], - "properties": { - "from": { - "type": "string", - "description": "The source", - "pattern": "^input:\/\/[^\/]+\/" - }, - "to": { - "type": "string", - "description": "The destination", - "pattern": "^(tree|mount):\/\/[^\/]+\/" + "description": "Array of items to copy", + "type": "array", + "minItems": 1, + "items": { + "type": "object", + "additionalProperties": false, + "required": ["from", "to"], + "properties": { + "from": { + "type": "string", + "description": "The source", + "pattern": "^input:\/\/[^\/]+\/" + }, + "to": { + "type": "string", + "description": "The destination", + "pattern": "^(tree|mount):\/\/[^\/]+\/" + } } } } } - } }, "devices": { "type": "object",