Container/image/service name, Go module path, CLI binary name, and DOCKER_MIGRATE_* env vars still used the old working name; the project is branded DockMV everywhere else (README, logo, Gitea repo). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
15 lines
264 B
Go
15 lines
264 B
Go
//go:build e2e
|
|
|
|
package e2e
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/arescom/dockmv/internal/sshx"
|
|
)
|
|
|
|
// asHostKeyError unwraps err into a *sshx.HostKeyError if it is one.
|
|
func asHostKeyError(err error, target **sshx.HostKeyError) bool {
|
|
return errors.As(err, target)
|
|
}
|