All checks were successful
continuous-integration/drone/push Build is passing
13 lines
237 B
Go
13 lines
237 B
Go
package tarheader
|
|
|
|
import (
|
|
"archive/tar"
|
|
"os"
|
|
)
|
|
|
|
// sysStat populates hdr from system-dependent fields of fi without performing
|
|
// any OS lookups. It is a no-op on Windows.
|
|
func sysStat(os.FileInfo, *tar.Header) error {
|
|
return nil
|
|
}
|