set all tar timestamp fields to the zero date

This commit is contained in:
Adam Robinson 2018-06-26 14:06:37 -04:00 committed by Sean Malloy
parent 3622a669dc
commit 8715bfbf70

View file

@ -2,10 +2,16 @@
package compress
import "archive/tar"
import (
"archive/tar"
"time"
)
func setHeaderFormat(header *tar.Header) {
// We have to set the Format explicitly for the googlecompute-import
// post-processor. Google Cloud only allows importing GNU tar format.
header.Format = tar.FormatGNU
header.AccessTime = time.Time{}
header.ModTime = time.Time{}
header.ChangeTime = time.Time{}
}