1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 07:50:40 +01:00

fix(gnu-utils): always reapply GNU coreutils on rehash

This commit is contained in:
Marc Cornellà
2021-12-26 23:29:58 +01:00
parent f85087005a
commit 0f1de08713

View File

@@ -73,11 +73,6 @@ function hash() {
} }
function rehash() { function rehash() {
if [[ "$*" =~ "-f" ]]; then
builtin rehash "$@" builtin rehash "$@"
__gnu_utils __gnu_utils
else
builtin rehash "$@"
fi
} }