1
0
Fork 0

Skip file permission check on Windows

This commit is contained in:
Stefan Scherer 2017-02-04 21:21:17 +01:00 committed by Vincent Demeester
parent 7cb4c42772
commit fa4226c742
3 changed files with 35 additions and 8 deletions

View file

@ -0,0 +1,6 @@
package acme
// Do not check file permissions on Windows right now
func checkPermissions(name string) error {
return nil
}