cue.validator: fix deprecated --strict flag

The --strict flag was deprecated in CUE 0.14.0 and causes NixOS builds
to fail with: '--strict is deprecated; use "jsonschema+strict:" as
shown in "cue help filetypes"'

Since strict validation is now the default behavior in CUE, we can
safely remove this flag without changing functionality.
This commit is contained in:
David Flanagan
2025-08-07 19:20:03 +01:00
parent c860cf0b3a
commit dcfb3202bd
-1
View File
@@ -15,7 +15,6 @@ cueSchemaFile:
writeShellScript "validate-using-cue" ''
${cue}/bin/cue \
--all-errors \
--strict \
vet \
--concrete \
"$1" \