github.com/ssube/gitlab-ci-multi-runner@v1.2.1-0.20160607142738-b8d1285632e6/helpers/archives/zip_extra_windows.go (about)

     1  package archives
     2  
     3  import (
     4  	"archive/zip"
     5  	"io"
     6  	"os"
     7  )
     8  
     9  func createZipUIDGidField(w io.Writer, fi os.FileInfo) (err error) {
    10  	// TODO: currently not supported
    11  	return nil
    12  }
    13  
    14  func processZipUIDGidField(data []byte, file *zip.FileHeader) error {
    15  	// TODO: currently not supported
    16  	return nil
    17  }