mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Make grep detection more robust (#1663)
This commit is contained in:
parent
26b8ba1677
commit
af122400ed
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ usage() {
|
||||||
|
|
||||||
definitions() {
|
definitions() {
|
||||||
local query="$1"
|
local query="$1"
|
||||||
python-build --definitions | $(type -p ggrep grep | head -1) -F "$query" || true
|
python-build --definitions | $(type -ap ggrep grep | head -1) -F "$query" || true
|
||||||
}
|
}
|
||||||
|
|
||||||
indent() {
|
indent() {
|
||||||
|
|
Loading…
Reference in a new issue