Skip to content

Commit 08a8afe

Browse files
authored
Merge pull request #141 from docker/typo-fix
fix typo in --push usage
2 parents f6ad1e8 + da7309b commit 08a8afe

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
@@ -75,7 +75,7 @@ func newPackagedCmd() *cobra.Command {
7575

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

docs/reference/docker_model_package.yaml

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

docs/reference/model_package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ When packaging a sharded model --gguf should point to the first shard. All shard
1111
| `--context-size` | `uint64` | `0` | context size in tokens |
1212
| `--gguf` | `string` | | absolute path to gguf file (required) |
1313
| `-l`, `--license` | `stringArray` | | absolute path to a license file |
14-
| `--push` | `bool` | | push to registry (if not set, the model is loaded into the Model Runner content store. |
14+
| `--push` | `bool` | | push to registry (if not set, the model is loaded into the Model Runner content store) |
1515

1616

1717
<!---MARKER_GEN_END-->

0 commit comments

Comments
 (0)