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