From 98beaf656f8fe54a658ca9ef5fb1f23d95d41a55 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 2 Oct 2015 11:11:39 +1300 Subject: Appease shellcheck with multi arith exps --- bash/bash_logout | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bash/bash_logout') diff --git a/bash/bash_logout b/bash/bash_logout index e5855f36..4b8d3943 100644 --- a/bash/bash_logout +++ b/bash/bash_logout @@ -3,8 +3,8 @@ # 2.05a). if ! [ -n "$BASH_VERSINFO" ] ; then return -elif ((BASH_VERSINFO[0] == 2 && \ - 10#${BASH_VERSINFO[1]%%[![:digit:]]*} < 5)) ; then +elif ((BASH_VERSINFO[0] == 2)) && \ + ((10#${BASH_VERSINFO[1]%%[![:digit:]]*} < 5)) ; then return fi -- cgit v1.2.3