aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2015-05-29 22:26:42 +1200
committerTom Ryder <tom@sanctum.geek.nz>2015-05-29 22:26:42 +1200
commit2ca287acb4e8140f55d0b67afd2c477fb6e13e16 (patch)
treec937e490a7fbafd496da1a9b081f9da5c3d0f8a0 /bash/bash_profile
parentA few safety fixes to pass completion (diff)
downloaddotfiles-2ca287acb4e8140f55d0b67afd2c477fb6e13e16.tar.gz
dotfiles-2ca287acb4e8140f55d0b67afd2c477fb6e13e16.zip
Align multiline if conditions
Diffstat (limited to 'bash/bash_profile')
-rw-r--r--bash/bash_profile6
1 files changed, 3 insertions, 3 deletions
diff --git a/bash/bash_profile b/bash/bash_profile
index 91c0f867..f62a10db 100644
--- a/bash/bash_profile
+++ b/bash/bash_profile
@@ -6,9 +6,9 @@ fi
# Ensure we're using at least version 2.05
if ! test -n "$BASH_VERSINFO" ; then
return
-elif ((10#${BASH_VERSINFO[0]%%[![:digit:]]*} == 2)) \
- && ((10#${BASH_VERSINFO[1]%%[![:digit:]]*} < 5)) ; then
- return
+elif ((10#${BASH_VERSINFO[0]%%[![:digit:]]*} == 2)) && \
+ ((10#${BASH_VERSINFO[1]%%[![:digit:]]*} < 5)) ; then
+ return
fi
# Source interactive Bash config if it exists