Case insensitivity switch for tree search should be lowercase

This commit is contained in:
fauxpark
2014-10-04 12:53:20 +10:00
parent a623cd1068
commit e6f101047d

View File

@@ -271,7 +271,7 @@ class Repository extends BaseRepository
$query = escapeshellarg($query);
try {
$results = $this->getClient()->run($this, "grep -I --line-number {$query} $branch");
$results = $this->getClient()->run($this, "grep -i --line-number {$query} $branch");
} catch (\RuntimeException $e) {
return false;
}