commit | 8e0b66899dc1fcc818c45f925a14fea36cd5e279 | [log] [tgz] |
---|---|---|
author | Noorul Islam K M <noorul@noorul.com> | 周一 8月 22 12:35:00 2011 +0530 |
committer | Travis Swicegood <development@domain51.com> | 周一 8月 22 09:26:26 2011 -0500 |
tree | aa9f29438eed51c3a90d73cc5504c3c75b6f031a | |
parent | 70e4c1ced043fd42f252419f2043708f9b5094a2 [diff] [blame] |
Do not break out of the loop instead continue with other items in the list.
diff --git a/bash_it.sh b/bash_it.sh index c7cbaa7..fd7b546 100644 --- a/bash_it.sh +++ b/bash_it.sh
@@ -22,7 +22,7 @@ do if [ ! -d "${BASH}/${file_type}/enabled" ] then - break + continue fi FILES="${BASH}/${file_type}/enabled/*.bash" for config_file in $FILES