mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2026-04-20 13:28:38 +02:00
b9be3a43b4
In BSD awk, \s is not a valid sequence interchangeable with "space or tab characters" as it is in GNU awk. This fix uses [ \t] instead, which is all the possibilities that we need to contemplate when reading the .zshrc file. Fixes #11146