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.
This commit is contained in:
Sylvie Crowe 2025-02-03 15:05:06 -08:00 committed by GitHub
parent cca18eefa4
commit 8febd09c2c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: