|
@@ -48,7 +48,6 @@ type buildOptions struct {
|
|
|
|
|
|
func (opts buildOptions) toAPIBuildOptions(services []string) (api.BuildOptions, error) {
|
|
|
var SSHKeys []types.SSHKey
|
|
|
- var err error
|
|
|
if opts.ssh != "" {
|
|
|
id, path, found := strings.Cut(opts.ssh, "=")
|
|
|
if !found && id != "default" {
|
|
@@ -58,9 +57,6 @@ func (opts buildOptions) toAPIBuildOptions(services []string) (api.BuildOptions,
|
|
|
ID: id,
|
|
|
Path: path,
|
|
|
})
|
|
|
- if err != nil {
|
|
|
- return api.BuildOptions{}, err
|
|
|
- }
|
|
|
}
|
|
|
builderName := opts.builder
|
|
|
if builderName == "" {
|