From ccb9a28f0143af4493e74c8f51072b262dbf219d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20K=C3=BCndig?= Date: Thu, 5 Mar 2020 08:50:14 +0100 Subject: [PATCH] The GitBinary class no longer exists --- src/Util/Git.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Util/Git.php b/src/Util/Git.php index 223e750..c7d5af0 100644 --- a/src/Util/Git.php +++ b/src/Util/Git.php @@ -2,7 +2,6 @@ namespace OFFLINE\Bootstrapper\October\Util; -use GitElephant\GitBinary; use GitElephant\Repository; /** @@ -17,7 +16,7 @@ public static function repo($path) if (stripos(PHP_OS, 'WIN') === 0) { // Use the default `git` command under Windows. This requires the git binary // to be added to the PATH environment variable. - $binary = new GitBinary('git'); + $binary = 'git'; } return Repository::open($path, $binary);