From 048ef1fbf872123ec3306467e63b56e14b8bb11b Mon Sep 17 00:00:00 2001 From: David Karlsson <35727626+dvdksn@users.noreply.github.com> Date: Wed, 3 Jul 2024 09:51:28 +0200 Subject: [PATCH] fix: buildx b alias the shorthand "b" alias was accidentally removed in 19d838a Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com> --- commands/build.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/commands/build.go b/commands/build.go index 374f4d54f..1bf77dc81 100644 --- a/commands/build.go +++ b/commands/build.go @@ -528,9 +528,10 @@ func buildCmd(dockerCli command.Cli, rootOpts *rootOptions, debugConfig *debug.D options := &buildOptions{} cmd := &cobra.Command{ - Use: "build [OPTIONS] PATH | URL | -", - Short: "Start a build", - Args: cli.ExactArgs(1), + Use: "build [OPTIONS] PATH | URL | -", + Short: "Start a build", + Args: cli.ExactArgs(1), + Aliases: []string{"b"}, Annotations: map[string]string{ "aliases": "docker build, docker builder build, docker image build, docker buildx b", },