diff options
| author | Chayoung You <yousbe@gmail.com> | 2025-08-17 11:54:32 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-17 11:54:32 +0900 |
| commit | de1824f71d82896331a12cea4fe5781de5f8a315 (patch) | |
| tree | 54cef1a63c2d21db639c6d4e9054ef222ecc8f5d | |
| parent | 19a9296c47a5edab2b604abc948e666cb191c328 (diff) | |
| download | fzf-de1824f71d82896331a12cea4fe5781de5f8a315.tar.gz | |
[install] Support old uname in macOS (#4492)
| -rwxr-xr-x | install | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -164,7 +164,7 @@ download() { } # Try to download binary executable -archi=$(uname -smo) +archi=$(uname -smo 2>/dev/null || uname -sm) binary_available=1 binary_error="" case "$archi" in |
