mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Fix has_tar_xz_support function on FreeBSD. (#1652)
This commit is contained in:
parent
af122400ed
commit
ea7b5c4aea
1 changed files with 1 additions and 1 deletions
|
@ -504,7 +504,7 @@ download_tarball() {
|
||||||
}
|
}
|
||||||
|
|
||||||
has_tar_xz_support() {
|
has_tar_xz_support() {
|
||||||
tar Jc /dev/null 1>/dev/null 2>&1
|
tar Jcf - /dev/null 1>/dev/null 2>&1
|
||||||
}
|
}
|
||||||
|
|
||||||
fetch_git() {
|
fetch_git() {
|
||||||
|
|
Loading…
Reference in a new issue