mirror of
https://github.com/klaussilveira/gitlist.git
synced 2026-02-20 21:47:32 +01:00
Case insensitivity switch for tree search should be lowercase
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user