Moving from .sh to .bash, mainly to get shellcheck to stop questioning my life choices

This commit is contained in:
David Thurstenson 2020-06-12 12:17:52 -05:00
parent 6e4eecd613
commit 4e3e1feba5
19 changed files with 2 additions and 2 deletions

View File

@ -20,6 +20,6 @@ shopt -s extglob
### OTHER CONFIG ### ### OTHER CONFIG ###
# Source all *.sh files in ~/.bashrc.d/ # Source all *.bash files in ~/.bashrc.d/
# shellcheck source=/dev/null # shellcheck source=/dev/null
for f in ~/.bashrc.d/*.sh; do source "$f"; done for f in ~/.bashrc.d/*.bash; do source "$f"; done