1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00

setup error when workspace path not exists

This commit is contained in:
Brad Rydzewski 2015-08-19 12:39:16 -07:00
parent 164c0c6a8e
commit b3f4cfccda
2 changed files with 3 additions and 1 deletions

View File

@ -106,7 +106,7 @@ func main() {
os.Exit(ctx.Job.ExitCode)
}
func createClone(c *Context) error {
func createClone(c *Context) {
c.Clone = &common.Clone{
Netrc: c.Netrc,
Keypair: c.Keys,

View File

@ -1,6 +1,8 @@
package main
import (
"fmt"
"github.com/drone/drone/Godeps/_workspace/src/github.com/samalba/dockerclient"
common "github.com/drone/drone/pkg/types"
"github.com/drone/drone/pkg/yaml"