diff options
| author | Błażej Sowa <bsowa123@gmail.com> | 2024-08-28 14:27:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-28 14:27:50 +0200 |
| commit | c80050d6f538d6d8d8942068ea9bf1d4de2b14e8 (patch) | |
| tree | 3af739e888b154f661a1c5bc54c14cdd64ae3fba /plugins | |
| parent | a3dfe290363c5f0ac6add41a1126d7c842a4d7c4 (diff) | |
| download | zsh-c80050d6f538d6d8d8942068ea9bf1d4de2b14e8.tar.gz zsh-c80050d6f538d6d8d8942068ea9bf1d4de2b14e8.tar.bz2 zsh-c80050d6f538d6d8d8942068ea9bf1d4de2b14e8.zip | |
fix(scd): avoid hardcoded binary path (#12641)
Co-authored-by: Carlo Sala <carlosalag@protonmail.com>
Diffstat (limited to 'plugins')
| -rwxr-xr-x | plugins/scd/scd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/scd/scd b/plugins/scd/scd index 7e9654b44..c79de4538 100755 --- a/plugins/scd/scd +++ b/plugins/scd/scd @@ -445,7 +445,7 @@ _scd_Y19oug_match() { # build a list of matching directories reverse-sorted by their probabilities dmatching=( ${(f)"$( builtin printf "%s %s\n" ${(Oakv)drank} | - /usr/bin/sort -grk1 )"} + command sort -grk1 )"} ) dmatching=( ${dmatching#*[[:blank:]]} ) |
