context_unix.go 163 B

1234567891011
  1. // +build !windows
  2. package builder
  3. import (
  4. "path/filepath"
  5. )
  6. func getContextRoot(srcPath string) (string, error) {
  7. return filepath.Join(srcPath, "."), nil
  8. }