client: fix windows build errors

This commit is contained in:
Mitchell Hashimoto 2015-09-27 23:53:25 -07:00
parent c4fe19764c
commit 690634d245
3 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import (
)
func (d *AllocDir) linkOrCopy(src, dst string, perm os.FileMode) error {
return fileCopy(src, dst)
return fileCopy(src, dst, perm)
}
// The windows version does nothing currently.

View File

@ -1,4 +1,5 @@
// +build linux darwin
package fingerprint
import (

View File

@ -1,4 +1,5 @@
// +build windows
package fingerprint
import (