blob: ff10ddde9e188775852a9f3ac5c21028bdc3a114 [file] [log] [blame]
// +build !windows
package client
import (
"path/filepath"
)
func getContextRoot(srcPath string) (string, error) {
return filepath.Join(srcPath, "."), nil
}