Force worker directory to use slash. Needed to use Drone on windows

This commit is contained in:
Richard Julien 2015-07-19 01:19:32 +02:00
parent 90bf8130f8
commit 420131d3fa

View file

@ -118,7 +118,7 @@ func (d *Docker) Do(c context.Context, r *worker.Work) {
Commit: r.Commit.Sha,
PR: r.Commit.PullRequest,
Private: r.Repo.Private,
Dir: filepath.Join("/var/cache/drone/src", git.GitPath(script.Git, path)),
Dir: filepath.ToSlash(filepath.Join("/var/cache/drone/src", git.GitPath(script.Git, path))),
Depth: git.GitDepth(script.Git),
}