Commit 71741e65 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Handle an empty TERM environment variable

parent da9640c0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ export TERM_SETUP_LOADED=${TTY}
. ~/.shell/lib/colours.sh

# do no setup if TERM is not set or dumb
case ${TERM-unset} in
case ${TERM:-unset} in
	unset) export TERM=dumb; return 0 ;;
	dumb) return 0 ;;
esac