Skip to content
This repository was archived by the owner on Aug 29, 2023. It is now read-only.

Commit df61713

Browse files
authored
docs: adjust helptext for the output option (#72)
1 parent ee13dd8 commit df61713

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

_docs/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,10 +140,10 @@ pull_image
140140
: enforces to pull base image at build time (default `true`)
141141

142142
compress
143-
: enables compression og the build context using gzip
143+
: enables compression of the build context using gzip
144144

145145
output
146-
: sets output folder for build artifacts (format: `path` or `type=TYPE[,KEY=VALUE]`)
146+
: sets the [export action](https://docs.docker.com/engine/reference/commandline/buildx_build/#output) for the build result (format: `path` or `type=TYPE[,KEY=VALUE]`)
147147

148148
repo
149149
: sets repository name for the image

cmd/drone-docker-buildx/config.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ func settingsFlags(settings *plugin.Settings) []cli.Flag {
153153
&cli.StringFlag{
154154
Name: "output",
155155
EnvVars: []string{"PLUGIN_OUTPUT"},
156-
Usage: "sets build output folder",
156+
Usage: "sets the export action for the build result",
157157
Destination: &settings.Build.Output,
158158
},
159159
&cli.StringFlag{
@@ -178,7 +178,7 @@ func settingsFlags(settings *plugin.Settings) []cli.Flag {
178178
&cli.BoolFlag{
179179
Name: "compress",
180180
EnvVars: []string{"PLUGIN_COMPRESS"},
181-
Usage: "enables compression og the build context using gzip",
181+
Usage: "enables compression of the build context using gzip",
182182
Destination: &settings.Build.Compress,
183183
},
184184
&cli.StringFlag{

0 commit comments

Comments
 (0)