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