From 498ff807d7ee227d6039e93bf16ef055fe6f2882 Mon Sep 17 00:00:00 2001 From: Klaus Silveira Date: Thu, 16 Aug 2012 01:34:53 -0300 Subject: [PATCH] Damn typo --- src/GitList/Component/Git/Client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/GitList/Component/Git/Client.php b/src/GitList/Component/Git/Client.php index dd654b2..01ed3a8 100644 --- a/src/GitList/Component/Git/Client.php +++ b/src/GitList/Component/Git/Client.php @@ -129,7 +129,7 @@ class Client public function run(Repository $repository, $command) { $descriptors = array(0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w")); - $process = proc_open($this->getPath() . 'd -c "color.ui"=false ' . $command, $descriptors, $pipes, $repository->getPath()); + $process = proc_open($this->getPath() . ' -c "color.ui"=false ' . $command, $descriptors, $pipes, $repository->getPath()); if (!is_resource($process)) { throw new \RuntimeException('Unable to execute command: ' . $command);