1
0
Fork 0

Escape spaces when registering the Perforce client spec

pull/2562/head^2
rockerest 2014-01-03 15:13:24 -06:00
parent dde9c309fd
commit 9ff0c767af
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ class Perforce
public function connectClient()
{
$p4CreateClientCommand = $this->generateP4Command('client -i < ' . $this->getP4ClientSpec());
$p4CreateClientCommand = $this->generateP4Command('client -i < ' . str_replace( " ", "\\ ", $this->getP4ClientSpec() ));
$this->executeCommand($p4CreateClientCommand);
}