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

11 lines
218 B
Go

// +build !linux
package allocdir
import "github.com/hashicorp/nomad/nomad/structs"
func (r *AllocRunner) Build(tasks []*structs.Task) error {
// TODO: Need to figure out how to do mounts on windows.
return nil
}