open-nomad/client/allocdir/alloc_dir_windows.go
2015-09-25 16:46:41 -07:00

13 lines
281 B
Go

package allocdir
import "errors"
func (d *AllocDir) linkOrCopy(src, dst string) error {
return fileCopy(src, dst)
}
// The windows version does nothing currently.
func (d *AllocDir) mountSharedDir(taskDir string) error {
return errors.New("Mount on Windows not supported.")
}