Recipes failing to validate
Hey! I'm trying to adapt my custom image recipes to pass BlueBuild CLI's validation based on the latest blog post and looking at some of the maintainers' own recipes. I'm not sure what I'm doing wrong.
https://github.com/BrodyB/ublue-brody/tree/main/recipes
GitHub
ublue-brody/recipes at main · BrodyB/ublue-brody
Custom Linux recipes I use for building my personal game development-focused operating systems! - BrodyB/ublue-brody
Solution:Jump to solution
I think it's the
remove:
property you have. According to the spec it should be uninstall:
instead. I've really got to work on filtering out all the irrelevant jsonschema errors5 Replies
Solution
I think it's the
remove:
property you have. According to the spec it should be uninstall:
instead. I've really got to work on filtering out all the irrelevant jsonschema errorsBlueBuild
gnome-extensions
The gnome-extensions module can be used to install GNOME extensions inside system directory.
Just FYI, I'm working on making these errors better https://github.com/blue-build/cli/issues/294
GitHub
fix: Improve validation errors · Issue #294 · blue-build/cli
Currently the validation errors are very confusing to the users as it shows too many at once when it comes to validating the modules: × Recipe recipes/recipe-toybox.yml failed to validate ╰─▶ × 11 ...
yes, it's due to that, good catch
Bam. Just changing the
gnome-extensions -> remove:
to uninstall:
did the trick. Thanks for the help!