From b94ca8215f8eb1b05bd610632876c89ce453e581 Mon Sep 17 00:00:00 2001 From: Loic d'Anterroches Date: Fri, 21 Nov 2008 21:47:43 +0100 Subject: [PATCH] Fixed to not cache the getBlob call with git. --- src/IDF/Scm/Git.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/IDF/Scm/Git.php b/src/IDF/Scm/Git.php index 23870fb..19469b0 100644 --- a/src/IDF/Scm/Git.php +++ b/src/IDF/Scm/Git.php @@ -211,9 +211,9 @@ class IDF_Scm_Git */ public function getBlob($request_file_info, $dummy=null) { - return IDF_Scm::shell_exec(sprintf('GIT_DIR=%s git-cat-file blob %s', - escapeshellarg($this->repo), - escapeshellarg($request_file_info->hash))); + return shell_exec(sprintf('GIT_DIR=%s git-cat-file blob %s', + escapeshellarg($this->repo), + escapeshellarg($request_file_info->hash))); } /**