diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2014-02-10 23:49:47 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2014-02-10 23:49:47 +1300 |
commit | 3d9e0ae95400747d070932013e761aa38e5124be (patch) | |
tree | 2fae51cb79146b2f66b9239ce36a087322bd51e8 | |
parent | Remove some unneeded semicolons (diff) | |
download | dotfiles-3d9e0ae95400747d070932013e761aa38e5124be.tar.gz dotfiles-3d9e0ae95400747d070932013e761aa38e5124be.zip |
Use explicit if for condition
Clearer than &&
-rw-r--r-- | bash/bashrc | 4 | ||||
-rw-r--r-- | sh/profile | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/bash/bashrc b/bash/bashrc index 733741a1..0d68f01f 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -80,7 +80,9 @@ fi # Load any supplementary scripts if [[ -d $HOME/.bashrc.d ]]; then for config in "$HOME"/.bashrc.d/*.bash; do - [[ -r $config ]] && source "$config" + if [[ -r $config ]]; then + source "$config" + fi done fi unset -v config @@ -7,7 +7,9 @@ export PATH # Load all supplementary scripts in ~/.profile.d if [ -d "$HOME"/.profile.d ]; then for config in "$HOME"/.profile.d/*.sh; do - [ -r "$config" ] && . "$config" + if [ -r "$config" ]; then + . "$config" + fi done fi unset -v config |