Merge pull request #5853 from proppy/update-tarfilter-comment

archive: update TarFilter comments
This commit is contained in:
Victor Vieux 2014-05-16 13:06:12 -07:00
Родитель 4b587ac118 311614952e
Коммит 1adc2fa533
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -303,8 +303,11 @@ func escapeName(name string) string {
return string(escaped)
}
// Tar creates an archive from the directory at `path`, only including files whose relative
// paths are included in `filter`. If `filter` is nil, then all files are included.
// TarFilter creates an archive from the directory at `srcPath` with `options`, and returns it as a
// stream of bytes.
//
// Files are included according to `options.Includes`, default to including all files.
// Stream is compressed according to `options.Compression', default to Uncompressed.
func TarFilter(srcPath string, options *TarOptions) (io.ReadCloser, error) {
pipeReader, pipeWriter := io.Pipe()