From 4eed9b9a894408eddd3aea3d2166b72011fb23ae Mon Sep 17 00:00:00 2001 From: "O'Keefe, Gerard (Gerry)" Date: Thu, 6 Feb 2025 13:52:46 -0700 Subject: [PATCH] fix: schema does not allow ignore_error in a cmd loop --- website/static/schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/static/schema.json b/website/static/schema.json index da25a209f9..129de97076 100644 --- a/website/static/schema.json +++ b/website/static/schema.json @@ -390,6 +390,10 @@ "description": "Values passed to the task called", "$ref": "#/definitions/vars" }, + "ignore_error": { + "description": "Prevent command from aborting the execution of task even after receiving a status code of 1", + "type": "boolean" + }, "platforms": { "description": "Specifies which platforms the command should be run on.", "$ref": "#/definitions/platforms"