From 81c0f9d6f7c2589c3c19adfcbbc4c78eadd51ac5 Mon Sep 17 00:00:00 2001 From: "Edward Z. Yang" Date: Sun, 27 Jul 2008 00:25:06 -0600 Subject: [PATCH] Make command invoker use the Git::$git variable for the executable. Signed-off-by: Edward Z. Yang --- library/Git.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Git.php b/library/Git.php index 5548646..25f85ad 100644 --- a/library/Git.php +++ b/library/Git.php @@ -208,7 +208,7 @@ class Git $c = $method[$i]; $command .= ctype_upper($c) ? '-' . strtolower($c) : $c; } - $call = array_merge(array('git', $command), $args); + $call = array_merge(array(self::$git, $command), $args); $result = $this->execute($call); return $result; } -- 2.11.4.GIT