From 346c1fd697efd033b8851a7a800f20c5091c2d7c Mon Sep 17 00:00:00 2001 From: Carlo Sala Date: Tue, 23 Sep 2025 11:52:09 +0200 Subject: [PATCH] fallback to old homebrew --- plugins/command-not-found/command-not-found.plugin.zsh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/command-not-found/command-not-found.plugin.zsh b/plugins/command-not-found/command-not-found.plugin.zsh index 69eeb4588..6d48ecb73 100644 --- a/plugins/command-not-found/command-not-found.plugin.zsh +++ b/plugins/command-not-found/command-not-found.plugin.zsh @@ -7,6 +7,9 @@ for file ( /opt/homebrew/Library/Homebrew/command-not-found/handler.sh /usr/local/Homebrew/Library/Homebrew/command-not-found/handler.sh /home/linuxbrew/.linuxbrew/Homebrew/Library/Homebrew/command-not-found/handler.sh + /opt/homebrew/Library/Taps/homebrew/homebrew-command-not-found/handler.sh + /usr/local/Homebrew/Library/Taps/homebrew/homebrew-command-not-found/handler.sh + /home/linuxbrew/.linuxbrew/Homebrew/Library/Taps/homebrew/homebrew-command-not-found/handler.sh ); do if [[ -r "$file" ]]; then source "$file"