diff --git a/Bashrc.wiki b/Bashrc.wiki index ae19114..1696971 100644 --- a/Bashrc.wiki +++ b/Bashrc.wiki @@ -50,7 +50,7 @@ shopt -s autocd This is where all the other utilities, aliases, and functions get pulled in. Anything in `~/.bashrc.d/` ending in `.sh` will get pulled in. {{{class="prettyprint" -for f in ~/.bashrc.d/*.sh; do source "$f"; done +for f in ~/.bashrc.d/*.bash; do source "$f"; done }}} This also removes the need for the local bashrc sourcing that I [[https://git.thurstylark.com/vcsh/bashrc.git/tree/.bashrc?id=30c53ca7224b583ed5068038b697653810e3b94b#n45|had in this file previously]]. If that functionality is needed, simply make a new script in `~/.bashrc.d/` and don't track it with `vcsh`.