From 00e930f39caefd2f73d5af38e2ccab720201d857 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Sat, 22 Aug 2015 19:16:33 +1200 Subject: Correct a version checking integer --- bash/bash_logout | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bash/bash_logout') diff --git a/bash/bash_logout b/bash/bash_logout index f0985687..ae6ab015 100644 --- a/bash/bash_logout +++ b/bash/bash_logout @@ -2,7 +2,7 @@ if ! [ -n "$BASH_VERSINFO" ] ; then return elif ((BASH_VERSINFO[0] == 2)) && \ - ((10#${BASH_VERSINFO[1]%%[![:digit:]]*} < 4)) ; then + ((10#${BASH_VERSINFO[1]%%[![:digit:]]*} < 5)) ; then return fi -- cgit v1.2.3