github.com/secure-build/gitlab-runner@v12.5.0+incompatible/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  }