From 98e7f20eca8880fefdbad0ac432e2053129edff5 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Thu, 15 Jan 2015 16:12:34 +0000 Subject: [PATCH] Added tmux not found option --- functions/fn_distrodetails | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/functions/fn_distrodetails b/functions/fn_distrodetails index 045475ae0..7b20547b7 100644 --- a/functions/fn_distrodetails +++ b/functions/fn_distrodetails @@ -27,7 +27,9 @@ glibcv=$(ldd --version |grep ldd|awk '{print $NF}') # tmux version # e.g: tmux 1.6 -if [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd [:digit:]|tail -c 3)" -lt "16" ]; then +if [ -z $(command -v tmux) ]; then + tmuxv="\e[0;31mNOT INSTALLED!\e[0m" +elif [ "$(tmux -V|sed "s/tmux //"|sed -n '1 p'|tr -cd [:digit:]|tail -c 3)" -lt "16" ]; then tmuxv="$(tmux -V) (>= 1.6 required for console log)" else tmuxv=$(tmux -V)