From 93e98bf6f7db558e538af84e00a678f983d7eba7 Mon Sep 17 00:00:00 2001 From: Stefan Hoffmann Date: Sat, 6 Feb 2021 17:59:05 +0100 Subject: [PATCH] Fixed Drone --- .drone.jsonnet | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index b0a9988..1beac8b 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -86,9 +86,9 @@ local manifest() = { { name: "validate ucDevices", image: "fftdf/docker-json-validate", - commands: { - jsonlint ucDevices.json, - }, + commands: [ + "jsonlint ucDevices.json" + ], when: { event: "push" }, @@ -96,9 +96,9 @@ local manifest() = { { name: "validate Devices", image: "fftdf/docker-json-validate", - commands: { - jsonlint devices.json, - }, + commands: [ + "jsonlint devices.json", + ], when: { event: "push" },