func makeenv(ctx *gb.Context) []envvar { return []envvar{ {"GB_PROJECT_DIR", ctx.Projectdir()}, } }
func manifestFile(ctx *gb.Context) string { return filepath.Join(ctx.Projectdir(), "vendor", manifestfile) }
// RelImportPaths converts a list of potentially relative import path (a path starting with .) // to an absolute import path relative to the project root of the Context provided. func RelImportPaths(ctx *gb.Context, paths ...string) []string { for i := 0; i < len(paths); i++ { paths[i] = relImportPath(ctx.Srcdirs()[0], paths[i]) } return paths }