From 394387c2fab28af36ceb6d73f1a4bbc9cbdccfa3 Mon Sep 17 00:00:00 2001 From: Kujtim Hoxha Date: Tue, 29 Jul 2025 16:14:06 +0200 Subject: [PATCH] chore: fix schema command --- Taskfile.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Taskfile.yaml b/Taskfile.yaml index 077c994e..be2da27f 100644 --- a/Taskfile.yaml +++ b/Taskfile.yaml @@ -48,5 +48,5 @@ tasks: schema: desc: Generate JSON schema for configuration cmds: - - go run cmd/schema/main.go > crush-schema.json - - echo "Generated crush-schema.json" + - go run main.go schema > schema.json + - echo "Generated schema.json"