Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
tobias-kuendig committed Mar 5, 2020
2 parents 35d3f4a + 58ee5ea commit d1ec40e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion october
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env php
<?php
define('DS', DIRECTORY_SEPARATOR);
define('VERSION', '0.7.2');
define('VERSION', '0.7.4');

if (file_exists(__DIR__.'/../../autoload.php')) {
require __DIR__.'/../../autoload.php';
Expand Down
3 changes: 1 addition & 2 deletions src/Util/Git.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

namespace OFFLINE\Bootstrapper\October\Util;

use GitElephant\GitBinary;
use GitElephant\Repository;

/**
Expand All @@ -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);
Expand Down

0 comments on commit d1ec40e

Please sign in to comment.