You are here

protected function Provision_PlatformGit::gitClone in Aegir Deploy 7.3

1 call to Provision_PlatformGit::gitClone()
Provision_PlatformGit::deployPlatform in modules/platform_git/drush/Provision/PlatformGit.php

File

modules/platform_git/drush/Provision/PlatformGit.php, line 41
The Provision_PlatformGit class.

Class

Provision_PlatformGit
@file The Provision_PlatformGit class.

Code

protected function gitClone() {
  $this
    ->notice(dt('Cloning `:url` to `:path`', [
    ':url' => $this->repository_url,
    ':path' => $this->repository_path,
  ]));
  return $this
    ->runCommand($this
    ->buildGitCloneCommand());
}