|
@@ -38,9 +38,7 @@ class Perforce
|
|
|
{
|
|
|
$this->windowsFlag = $isWindows;
|
|
|
$this->p4Port = $port;
|
|
|
- $this->path = $path;
|
|
|
- $fs = new Filesystem();
|
|
|
- $fs->ensureDirectoryExists($path);
|
|
|
+ $this->initializePath($path);
|
|
|
$this->process = $process;
|
|
|
$this->initialize($repoConfig);
|
|
|
}
|
|
@@ -131,6 +129,13 @@ class Perforce
|
|
|
return $this->path;
|
|
|
}
|
|
|
|
|
|
+ public function initializePath($path)
|
|
|
+ {
|
|
|
+ $this->path = $path;
|
|
|
+ $fs = new Filesystem();
|
|
|
+ $fs->ensureDirectoryExists($path);
|
|
|
+ }
|
|
|
+
|
|
|
protected function getPort()
|
|
|
{
|
|
|
return $this->p4Port;
|