Skip to content
This repository was archived by the owner on Oct 6, 2025. It is now read-only.

Commit da7309b

Browse files
committed
fix typo in --push usage
Signed-off-by: Emily Casey <[email protected]>
1 parent ebb4723 commit da7309b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

commands/package.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func newPackagedCmd() *cobra.Command {
7373

7474
c.Flags().StringVar(&opts.ggufPath, "gguf", "", "absolute path to gguf file (required)")
7575
c.Flags().StringArrayVarP(&opts.licensePaths, "license", "l", nil, "absolute path to a license file")
76-
c.Flags().BoolVar(&opts.push, "push", false, "push to registry (if not set, the model is loaded into the Model Runner content store.")
76+
c.Flags().BoolVar(&opts.push, "push", false, "push to registry (if not set, the model is loaded into the Model Runner content store)")
7777
c.Flags().Uint64Var(&opts.contextSize, "context-size", 0, "context size in tokens")
7878
return c
7979
}

docs/reference/docker_model_package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ options:
4141
value_type: bool
4242
default_value: "false"
4343
description: |
44-
push to registry (if not set, the model is loaded into the Model Runner content store.
44+
push to registry (if not set, the model is loaded into the Model Runner content store)
4545
deprecated: false
4646
hidden: false
4747
experimental: false

docs/reference/model_package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Package a GGUF file into a Docker model OCI artifact, with optional licenses. Th
1010
| `--context-size` | `uint64` | `0` | context size in tokens |
1111
| `--gguf` | `string` | | absolute path to gguf file (required) |
1212
| `-l`, `--license` | `stringArray` | | absolute path to a license file |
13-
| `--push` | `bool` | | push to registry (if not set, the model is loaded into the Model Runner content store. |
13+
| `--push` | `bool` | | push to registry (if not set, the model is loaded into the Model Runner content store) |
1414

1515

1616
<!---MARKER_GEN_END-->

0 commit comments

Comments
 (0)