Update health check tmux version parse regex

This updates the grep regex that parses the tmux version to allow for release candidate versions e.g. `tmux 2.7-rc`.
This commit is contained in:
Gio d'Amelio 2018-10-17 00:12:45 -07:00 committed by GitHub
parent fae27fb0ef
commit 64030026fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ function perform_health_check() {
local healthy=1
# BASH_VERSION is a global
local TMUX_VERSION=$(tmux -V | grep -Eio "[0-9]+(\.[0-9a-z])*$")
local TMUX_VERSION=$(tmux -V | grep -Eio "([0-9]+(\.[0-9]))(?:-rc)?$")
local GAWK_VERSION=""
if [[ $(program_exists "gawk") = "1" ]]; then