mirror of https://github.com/docker/cli.git
12 lines
161 B
Go
12 lines
161 B
Go
|
// +build !windows
|
||
|
|
||
|
package build
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
)
|
||
|
|
||
|
func getContextRoot(srcPath string) (string, error) {
|
||
|
return filepath.Join(srcPath, "."), nil
|
||
|
}
|