mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 01:53:42 +08:00 
			
		
		
		
	fix: buildx b alias
the shorthand "b" alias was accidentally removed in 19d838a
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
			
			
This commit is contained in:
		@@ -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",
 | 
			
		||||
		},
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user