From 9164150c06a34f07d115623bc214971979da47ee Mon Sep 17 00:00:00 2001 From: Matthew Rich Date: Sun, 24 Aug 2025 23:53:24 +0000 Subject: [PATCH] clean up command schema format --- internal/resource/schemas/command.schema.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/resource/schemas/command.schema.json b/internal/resource/schemas/command.schema.json index d51b067..43752db 100644 --- a/internal/resource/schemas/command.schema.json +++ b/internal/resource/schemas/command.schema.json @@ -6,23 +6,23 @@ "properties": { "path": { "type": "string", - "description": "command path", + "description": "command path", "minLength": 1 }, "args": { "type": "array", - "description": "list of command args", + "description": "list of command args", "items": { "type": "string" } }, "split": { "type": "boolean", - "description": "split command line args by space" + "description": "split command line args by space" }, "failonerror": { "type": "boolean", - "description": "Generate an error if the command fails", + "description": "Generate an error if the command fails", "items": { "type": "string" }