Code Review
/
common
/
bash_it.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
review
|
tree
raw
|
patch
| inline |
side by side
(parent:
70e4c1c
)
Do not break out of the loop instead continue with other items in the list.
author
Noorul Islam K M
<noorul@noorul.com>
Mon, 22 Aug 2011 07:05:00 +0000
(12:35 +0530)
committer
Travis Swicegood
<development@domain51.com>
Mon, 22 Aug 2011 14:26:26 +0000
(09:26 -0500)
bash_it.sh
patch
|
blob
|
history
diff --git
a/bash_it.sh
b/bash_it.sh
index
c7cbaa7
..
fd7b546
100644
(file)
--- a/
bash_it.sh
+++ b/
bash_it.sh
@@
-22,7
+22,7
@@
for file_type in "aliases" "completion" "plugins"
do
if [ ! -d "${BASH}/${file_type}/enabled" ]
then
- break
+ continue
fi
FILES="${BASH}/${file_type}/enabled/*.bash"
for config_file in $FILES