mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9e19b4839f
Signed-off-by: Daniel Nephin <dnephin@docker.com>
11 lines
162 B
Go
11 lines
162 B
Go
// +build !windows
|
|
|
|
package client
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func getContextRoot(srcPath string) (string, error) {
|
|
return filepath.Join(srcPath, "."), nil
|
|
}
|