Commit 078dd254 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Handle unset LC_TERMINAL var in term-setup.sh

parent 73ba5a9d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -46,7 +46,7 @@ linux)
	# Set title
	# (not suported by linux VT)
	hostname=`hostname -f 2>/dev/null || hostname`
	case $LC_TERMINAL in
	case ${LC_TERMINAL-} in
		iTerm2) code=1 ;;
		*) code=2 ;;
	esac