Browse Source

Added one more location for tmux

pull/342/head
Daniel Gibbs 10 years ago
parent
commit
d456d43d11
  1. 2
      functions/fn_check_tmux

2
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"

Loading…
Cancel
Save