Skip to content

Commit 1c91613

Browse files
committed
missing usage for dap command
Signed-off-by: CrazyMax <[email protected]>
1 parent d3e0353 commit 1c91613

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

docs/reference/buildx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Extended build capabilities with BuildKit
1616
| [`bake`](buildx_bake.md) | Build from a file |
1717
| [`build`](buildx_build.md) | Start a build |
1818
| [`create`](buildx_create.md) | Create a new builder instance |
19-
| [`dap`](buildx_dap.md) | |
19+
| [`dap`](buildx_dap.md) | Debug Adapter Protocol server |
2020
| [`debug-shell`](buildx_debug-shell.md) | Start a monitor |
2121
| [`du`](buildx_du.md) | Disk usage |
2222
| [`imagetools`](buildx_imagetools.md) | Commands to work on images in registry |

docs/reference/buildx_dap.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# docker buildx dap
22

33
<!---MARKER_GEN_START-->
4+
Debug Adapter Protocol server
5+
46
### Options
57

68
| Name | Type | Default | Description |

monitor/dap/cmd.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ func AttachContainerCmd(dockerCli command.Cli) *cobra.Command {
3333
func Cmd(dockerCli command.Cli) *cobra.Command {
3434
cmd := &cobra.Command{
3535
Use: "dap",
36+
Short: "Debug Adapter Protocol server",
3637
Hidden: true, // hidden command; we need it for emacs DAP support
3738
RunE: func(cmd *cobra.Command, args []string) error {
3839
logrus.SetOutput(os.Stderr)

0 commit comments

Comments
 (0)