From 8febd09c2cd48478eb3edcf809da8ee1e851ff79 Mon Sep 17 00:00:00 2001 From: Sylvie Crowe <107814465+oneirocosm@users.noreply.github.com> Date: Mon, 3 Feb 2025 15:05:06 -0800 Subject: [PATCH] fix: schema build process ignore rmrf error (#1897) In prod builds, the RMRF step of build:schema is breaking the build. This ignores the error produced to avoid that. --- Taskfile.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index 7be83f6c4..469d23c09 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -123,7 +123,8 @@ tasks: - "dist/schema/**/*" cmds: - go run cmd/generateschema/main-generateschema.go - - '{{.RMRF}} "dist/schema"' + - cmd: '{{.RMRF}} "dist/schema"' + ignore_error: true - task: copyfiles:'schema':'dist/schema' build:server: