mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -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() {
|
||||
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() {
|
||||
|
|
Loading…
Reference in a new issue