This commit is contained in:
Alexis Lefebvre 2026-01-22 04:51:53 +01:00 committed by GitHub
commit ca3c1c95f6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,7 @@ var visionSaveFlags = []cli.Flag{
// VisionSaveCommand writes the model configuration to vision.yml.
var VisionSaveCommand = &cli.Command{
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,
Action: visionSaveAction,
}
@ -41,4 +41,4 @@ func visionSaveAction(ctx *cli.Context) error {
return vision.Config.Save(fileName)
})
}
}