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
That wouldn't work for el cap people then. Whatever it is we do, the semicolon needs to not be there for darwin<15 and linux by default, and then we do add the semicolon for those two exceptions, El Cap and Sierra. If we can figure out why Terminal started getting confused without the semicolon, and write a ps1 line for everybody, we can skip the boolean all together.
if [ $OSTYPE == 'darwin15' ] && ! [ $ITERM_SESSION_ID ]
needs to become
if [ $OSTYPE == 'darwin16' ] && ! [ $ITERM_SESSION_ID ]
and then it will work
The text was updated successfully, but these errors were encountered: