aboutsummaryrefslogtreecommitdiff
path: root/bash/bash_profile
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2013-08-20 11:30:40 +1200
committerTom Ryder <tom@sanctum.geek.nz>2013-08-20 11:30:40 +1200
commitc549fd2782547ebf37e0b7c08b70dba76b1a5eef (patch)
tree855535dba3539cb0d6ac9143af69dab3827cabd2 /bash/bash_profile
parentUse arithmetic expression for argument count (diff)
downloaddotfiles-c549fd2782547ebf37e0b7c08b70dba76b1a5eef.tar.gz
dotfiles-c549fd2782547ebf37e0b7c08b70dba76b1a5eef.zip
Remove unneeded quoting within [[ ]]
Diffstat (limited to 'bash/bash_profile')
-rw-r--r--bash/bash_profile4
1 files changed, 2 insertions, 2 deletions
diff --git a/bash/bash_profile b/bash/bash_profile
index 4594b77b..3d50e437 100644
--- a/bash/bash_profile
+++ b/bash/bash_profile
@@ -1,10 +1,10 @@
# Source Bourne shell profile if it exists
-if [[ -r "$HOME/.profile" ]]; then
+if [[ -r $HOME/.profile ]]; then
source "$HOME/.profile"
fi
# Source interactive Bash config if it exists
-if [[ -r "$HOME/.bashrc" ]]; then
+if [[ -r $HOME/.bashrc ]]; then
source "$HOME/.bashrc"
fi