[SOLVED] Theme not working properly on MacOS #84
Replies: 3 comments 1 reply
-
What is the solution to this? What did you do to solve the problem? I have this issue and cannot get it to function correctly |
Beta Was this translation helpful? Give feedback.
-
Hi, it's a matter of bash version. Check the requirements please. |
Beta Was this translation helpful? Give feedback.
-
As I've said, the problem was about the BASH version; but in my case it was because of the way the PATH was declared, and the macos default version took precedence over the homebrew installed one. It was just a point to improve a bit the documentation. Just that. |
Beta Was this translation helpful? Give feedback.
-
I've found myself trying to make the plugin work in MacOS Sonoma, but it was not clear for me the root cause, provided I'm running ZSH as my shell, and installed a newer version of bash via homebrew.
The problem was in how the PATH was built and how the
/usr/bin/env
interprets thebash
existence into PATH; being the first one that appears which takes the precedence. This could be checked watching the PATH contents$ echo $PATH
and testing the env precedence executing$ /usr/bin/env bash
.Probably this is a novice error, but it will be nice to notice it; or to eliminate the hard bash requirement, because it's mainly used to see the actual directory.
Cheers,
Ari
Beta Was this translation helpful? Give feedback.
All reactions