From 086d63deee2eaffe072ae9dab0eaeb2195f5cb89 Mon Sep 17 00:00:00 2001 From: Alexis Lefebvre Date: Mon, 8 Dec 2025 23:57:18 +0100 Subject: [PATCH] feat: update description of `vision save` command --- internal/commands/vision_save.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/commands/vision_save.go b/internal/commands/vision_save.go index d0e7b7606..c56ba1d0f 100644 --- a/internal/commands/vision_save.go +++ b/internal/commands/vision_save.go @@ -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) }) -} +} \ No newline at end of file