You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
and modified .local/share/omf/pkg/brew/conf.d/brew.fish to include M1 bin/sbin paths:
iftype-q brew
set-l brew_paths /opt/homebrew/bin /opt/homebrew/sbin /usr/local/bin /usr/bin /bin /usr/local/sbin /usr/sbin /sbin
# Append all existing brew paths to PATHset-l existing_brew_paths
for brew_path in$brew_pathsiftest-d$brew_pathset PATH $PATH$brew_pathset existing_brew_paths $existing_brew_paths$brew_pathendend# Remove brew paths from tail to head that were not recently addedset-l number_of_paths_to_ignore (math (count$PATH) - (count$existing_brew_paths))
for i in (seq (count$PATH))[-1..1]
iftest$i-le$number_of_paths_to_ignoreifcontains$PATH[$i] $brew_pathsset-e PATH[$i]
endendendelseecho"Please install 'brew' first!"end
ideally we should combine both changes as they are required
Brew is installed differently on the m1 mac
brew can be found in
/opt/homebrew/bin/brew
The text was updated successfully, but these errors were encountered: