Merge branch 'master' of github.com:starr-dusT/dotfiles

This commit is contained in:
Tyler Starr 2024-02-05 22:56:19 -08:00
commit 55fc746040

View File

@ -3,7 +3,7 @@
# Load the shell dotfiles (that are available)
for file in ~/.{path,bash_prompt,exports,aliases,functions,extra}; do
[ -r "$file" ] && [ -f "$file" ] && source "$file";
[ -f "$file" ] && source "$file";
done;
unset file;