func()

in pkg/archive/spec.go [167:173]


func (s *Spec) FullPath(rootDir string) (string, error) {
	f, err := s.Basename()
	if err != nil {
		return "", err
	}
	return filepath.Join(s.Dir(rootDir), f), nil
}