From d456d43d112fca0b0461c0b27542839cbd94a69b Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 17 Apr 2015 00:17:03 +0100 Subject: [PATCH] Added one more location for tmux --- functions/fn_check_tmux | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fn_check_tmux b/functions/fn_check_tmux index 7fc536662..2880d324a 100644 --- a/functions/fn_check_tmux +++ b/functions/fn_check_tmux @@ -6,7 +6,7 @@ # Checks if tmux is installed as too many users do not RTFM or know how to use Google. -if [ "$(command -v tmux)" ]||[ "$(which tmux)" ]||[ -f "/usr/bin/tmux" ]; then +if [ "$(command -v tmux)" ]||[ "$(which tmux)" ]||[ -f "/usr/bin/tmux" ]||[ -f "/bin/tmux" ]; then : else fn_printfailnl "Tmux not installed"