1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-12-06 08:16:19 +02:00

Merge pull request #1101 from richard-julien/master

Force worker directory to use slash. Needed to use Drone on windows
This commit is contained in:
Brad Rydzewski 2015-08-03 00:48:41 -07:00
commit caf74d7122
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -16,3 +16,5 @@ cli/cli
client/client
server/server
packaging/root/usr/local
.idea/
*.iml

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),
}