aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bash/bash_logout4
-rw-r--r--bash/bash_profile4
-rw-r--r--bash/bashrc4
3 files changed, 6 insertions, 6 deletions
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
diff --git a/bash/bash_profile b/bash/bash_profile
index e8762fd2..f89d83f1 100644
--- a/bash/bash_profile
+++ b/bash/bash_profile
@@ -8,8 +8,8 @@ fi
# 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
diff --git a/bash/bashrc b/bash/bashrc
index 2de3f6f4..55da282e 100644
--- a/bash/bashrc
+++ b/bash/bashrc
@@ -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