23 lines
429 B
Go
23 lines
429 B
Go
|
// +build windows
|
||
|
|
||
|
package contenthash
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/tonistiigi/fsutil"
|
||
|
)
|
||
|
|
||
|
// chmodWindowsTarEntry is used to adjust the file permissions used in tar
|
||
|
// header based on the platform the archival is done.
|
||
|
func chmodWindowsTarEntry(perm os.FileMode) os.FileMode {
|
||
|
perm &= 0755
|
||
|
// Add the x bit: make everything +x from windows
|
||
|
perm |= 0111
|
||
|
|
||
|
return perm
|
||
|
}
|
||
|
|
||
|
func setUnixOpt(fi os.FileInfo, stat *fsutil.Stat) {
|
||
|
}
|