moby--moby/api/client/utils_unix.go

12 lines
162 B
Go

// +build !windows
package client
import (
"path/filepath"
)
func getContextRoot(srcPath string) (string, error) {
return filepath.Join(srcPath, "."), nil
}