blob: 4ecf61746b2e7ee0d454d205ee7f93c289063717 [file] [log] [blame]
package dirs
import (
"path/filepath"
)
/*
Package "dirs" contains definitions of directories used by Task Drivers.
*/
func Cache(workdir string) string {
return filepath.Join(workdir, "cache")
}
func DepotTools(workdir string) string {
return filepath.Join(workdir, "depot_tools")
}