Fixed project directory for Build::writeSshKey and

Build::writeSshWrapper. Issue #165.
This commit is contained in:
Dmitry Khomutov 2018-03-16 06:49:35 +07:00
commit 7747193c89
No known key found for this signature in database
GPG key ID: EC19426474B37AAC
3 changed files with 4 additions and 4 deletions

View file

@ -109,7 +109,7 @@ class GitBuild extends Build
}
$cmd .= ' -b "%s" "%s" "%s"';
$cmd = 'export GIT_SSH="'.$gitSshWrapper.'" && ' . $cmd;
$cmd = 'export GIT_SSH="' . $gitSshWrapper . '" && ' . $cmd;
$success = $builder->executeCommand($cmd, $this->getBranch(), $this->getCloneUrl(), $cloneTo);