Skip to content

Commit

Permalink
changed shorthand letter for single file flag in add cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
SchawnnDev committed Apr 1, 2024
1 parent f4941ca commit 7d3a9ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/model/add.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func init() {
customArgs.ToCobra(modelAddCmd)
customArgs.DirectoryPath = app.DownloadDirectoryPath
modelAddCmd.Flags().BoolVarP(&addController.AuthorizeDownload, "yes", "y", false, "Automatic yes to prompts")
modelAddCmd.Flags().BoolVarP(&addController.SingleFile, "single-file", "s", false, "Use the model as a single file, (usually its a safetensors file)")
modelAddCmd.Flags().BoolVarP(&addController.SingleFile, "single-file", "S", false, "Use the model as a single file, (usually its a safetensors file)")
}

// runAddByNames runs the add command to add models by name
Expand Down

0 comments on commit 7d3a9ee

Please sign in to comment.