1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-08-11 17:50:58 +00:00

fix #122 - support actions/checkout for repos other the one for this workflow (#143)

This commit is contained in:
Casey Lee 2020-03-09 17:45:42 -07:00 committed by GitHub
parent caba9f7645
commit e60c46b79f
4 changed files with 66 additions and 3 deletions

View file

@ -105,6 +105,7 @@ func (cr *containerReference) CopyDir(destPath string, srcPath string) common.Ex
common.NewInfoExecutor("%sdocker cp src=%s dst=%s", logPrefix, srcPath, destPath),
cr.connect(),
cr.find(),
cr.exec([]string{"mkdir", "-p", destPath}, nil),
cr.copyDir(destPath, srcPath),
).IfNot(common.Dryrun)
}