mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-13 06:57:09 +08:00
history: add history import command
Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
This commit is contained in:
13
util/desktop/paths_unsupported.go
Normal file
13
util/desktop/paths_unsupported.go
Normal file
@ -0,0 +1,13 @@
|
||||
//go:build !windows && !darwin && !linux
|
||||
|
||||
package desktop
|
||||
|
||||
import (
|
||||
"runtime"
|
||||
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func BuildServerAddr() (string, error) {
|
||||
return "", errors.Errorf("Docker Desktop unsupported on %s", runtime.GOOS)
|
||||
}
|
Reference in New Issue
Block a user