From 4af2d17541e48ee472764ddf8be1d659763ad5ee Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Tue, 1 Apr 2014 11:12:23 +0100 Subject: [PATCH 1/1] Strip non-numerics from tmux version. Version 1.9a was causing the major/minor comparison to barf. --- .profile.d/tmux.bashrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.profile.d/tmux.bashrc b/.profile.d/tmux.bashrc index 2bf7f05..3a50641 100644 --- a/.profile.d/tmux.bashrc +++ b/.profile.d/tmux.bashrc @@ -15,6 +15,7 @@ if [ $? = 0 ]; then # tmux 1.8 added -b flag to run-shell. Prior to 1.8 we must detach. tmux_version=$($tmux -V) tmux_version=${tmux_version#tmux } + tmux_version=${tmux_version//[^0-9]/} tmux_major=${tmux_version%%.*} tmux_minor=${tmux_version#*.} tmux_minor=${tmux_minor%%.*} -- 2.7.4