Skip to content

Commit

Permalink
fix buidler name in build command
Browse files Browse the repository at this point in the history
  • Loading branch information
EItanya committed Dec 4, 2021
1 parent 55cc7b2 commit d3e29d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cli/internal/commands/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ type buildOptions struct {
}

func addToFlags(flags *pflag.FlagSet, opts *buildOptions) {
flags.StringVarP(&opts.BuildImage, "build-image", "i", fmt.Sprintf("gcr.io/gloobpf/bpfbuilder:%s", version.Version), "Build image to use when compiling BPF program")
flags.StringVarP(&opts.BuildImage, "build-image", "i", fmt.Sprintf("ghcr.io/solo-io/bumblebee/builder:%s", version.Version), "Build image to use when compiling BPF program")
flags.StringVarP(&opts.Builder, "builder", "b", "docker", "Executable to use for docker build command, default: `docker`")
flags.StringVarP(&opts.OutputFile, "output-file", "o", "", "Output file for BPF ELF. If left blank will default to <inputfile.o>")
flags.BoolVarP(&opts.Local, "local", "l", false, "Build the output binary and OCI image using local tools")
Expand Down

0 comments on commit d3e29d0

Please sign in to comment.