Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 9e19b4839fe32d2935306a630305e7b821544c14 Component: engine
12 lines
162 B
Go
12 lines
162 B
Go
// +build !windows
|
|
|
|
package client
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func getContextRoot(srcPath string) (string, error) {
|
|
return filepath.Join(srcPath, "."), nil
|
|
}
|