Merge remote-tracking branch 'jfsiii/master'
Conflicts:
bash_it.sh
diff --git a/bash_it.sh b/bash_it.sh
index 64a9523..ee6957b 100644
--- a/bash_it.sh
+++ b/bash_it.sh
@@ -17,7 +17,9 @@
FILES="${BASH_IT}/${file_type}/enabled/*.bash"
for config_file in $FILES
do
- source $config_file
+ if [ -e "${config_file}" ]; then
+ source $config_file
+ fi
done
done
@@ -31,7 +33,9 @@
CUSTOM="${BASH_IT}/custom/*.bash"
for config_file in $CUSTOM
do
- source $config_file
+ if [ -e "${config_file}" ]; then
+ source $config_file
+ fi
done
# Load colors first so they can be use in base theme