mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-25 05:07:44 +08:00
Merge pull request #26 from tiborvass/fix-network-flag-bug
build: do not error out if --network is default
This commit is contained in:
commit
037af0e3dd
@ -71,7 +71,7 @@ func runBuild(dockerCli command.Cli, in buildOptions) error {
|
||||
if in.quiet {
|
||||
return errors.Errorf("quiet currently not implemented")
|
||||
}
|
||||
if in.networkMode != "" {
|
||||
if in.networkMode != "default" {
|
||||
return errors.Errorf("network currently not implemented")
|
||||
}
|
||||
if in.imageIDFile != "" {
|
||||
|
Loading…
x
Reference in New Issue
Block a user