From d804f213548d2d6501c233b178051c60b8f1522a Mon Sep 17 00:00:00 2001 From: Axel Hahn <axel.hahn@iml.unibe.ch> Date: Wed, 22 Apr 2015 16:53:25 +0200 Subject: [PATCH] - fix: checkout tags with git version 1.7 --- public_html/deployment/classes/vcs.git.class.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/public_html/deployment/classes/vcs.git.class.php b/public_html/deployment/classes/vcs.git.class.php index bb3c67e2..5936ed78 100644 --- a/public_html/deployment/classes/vcs.git.class.php +++ b/public_html/deployment/classes/vcs.git.class.php @@ -454,8 +454,6 @@ class vcs implements iVcs { $this->log(__FUNCTION__." start command $sGitCmd"); // $sReturn = shell_exec($sGitCmd); exec($sGitCmd, $sReturn, $iRc); - - echo print_r($sReturn, 1) . "<br>rc=$rc<br>"; $this->log(__FUNCTION__." end command $sGitCmd"); return implode("\n", $sReturn). "\nrc=$iRc"; } -- GitLab