mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
fc6122a947
This feels like it's where it belongs and it makes it exported again (which is needed for libcompose that was using it before 1.10). Signed-off-by: Vincent Demeester <vincent@sbr.pm>
11 lines
163 B
Go
11 lines
163 B
Go
// +build !windows
|
|
|
|
package builder
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func getContextRoot(srcPath string) (string, error) {
|
|
return filepath.Join(srcPath, "."), nil
|
|
}
|