Files
docker-docs/api/client/utils_unix.go
2015-12-28 11:22:39 -05:00

12 lines
162 B
Go

// +build !windows
package client
import (
"path/filepath"
)
func getContextRoot(srcPath string) (string, error) {
return filepath.Join(srcPath, "."), nil
}