You are here

protected function Provision_ComposerGitCreateProject::buildCloneProjectCommand in Aegir Deploy 7.3

1 call to Provision_ComposerGitCreateProject::buildCloneProjectCommand()
Provision_ComposerGitCreateProject::createProject in modules/platform_composer_git/drush/Provision/ComposerGitCreateProject.php

File

modules/platform_composer_git/drush/Provision/ComposerGitCreateProject.php, line 57
The Provision_ComposerGitCreateProject class.

Class

Provision_ComposerGitCreateProject
@file The Provision_ComposerGitCreateProject class.

Code

protected function buildCloneProjectCommand() {
  $command = 'git clone ';
  $command .= escapeshellarg(trim($this->project_url));
  $command .= ' ';
  $command .= escapeshellarg(trim($this->path));
  return $command;
}