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
|
|
}
|