feat: update description of vision save command

This commit is contained in:
Alexis Lefebvre 2025-12-08 23:57:18 +01:00
parent fd4519ec0b
commit 086d63deee
No known key found for this signature in database
GPG key ID: 3DCE39C7795C652A

View file

@ -23,7 +23,7 @@ var visionSaveFlags = []cli.Flag{
// VisionSaveCommand writes the model configuration to vision.yml. // VisionSaveCommand writes the model configuration to vision.yml.
var VisionSaveCommand = &cli.Command{ var VisionSaveCommand = &cli.Command{
Name: "save", Name: "save",
Usage: "Saves the current model configuration to the vision.yml file", Usage: "Create a vision.yml file with the default configuration, if it doesn't exist yet",
Flags: visionSaveFlags, Flags: visionSaveFlags,
Action: visionSaveAction, Action: visionSaveAction,
} }
@ -41,4 +41,4 @@ func visionSaveAction(ctx *cli.Context) error {
return vision.Config.Save(fileName) return vision.Config.Save(fileName)
}) })
} }