]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/fsouza/go-dockerclient/external/github.com/docker/docker/pkg/system/chtimes_unix.go
provider: Ensured Go 1.11 in TravisCI and README
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / fsouza / go-dockerclient / external / github.com / docker / docker / pkg / system / chtimes_unix.go
CommitLineData
9b12e4fe
JC
1// +build !windows
2
3package system
4
5import (
6 "time"
7)
8
9//setCTime will set the create time on a file. On Unix, the create
10//time is updated as a side effect of setting the modified time, so
11//no action is required.
12func setCTime(path string, ctime time.Time) error {
13 return nil
14}