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
I don't have any formulae displayed as installed, all categories are showing "2", and the rows are populated with `tput: No value for $TERM and no -T specified".
I have 11.6 + bash as default shell.
If I start "Cakebrew" from command line, everything works fine.
The text was updated successfully, but these errors were encountered:
@veics As a quick fix, wherever you use tput § in your startup files,
you can instead run [ -n "$TERM" ] && tput §* or [ -t 0 ] && tput §,
where § is whatever arguments you provide to tput.
For example, replace a line like export COLOR_GREEN="$(tput setaf 2)" with export COLOR_GREEN="$([ -t 0 ] && tput setaf 2)"
It might cause false positives in cases where you want tput to run, but it makes Cakebrew work.
I don't have any formulae displayed as installed, all categories are showing "2", and the rows are populated with `tput: No value for $TERM and no -T specified".
I have 11.6 + bash as default shell.
If I start "Cakebrew" from command line, everything works fine.
The text was updated successfully, but these errors were encountered: