From f4369c81971bd7b8460b4d5d95ceb2d0cfbeadcb Mon Sep 17 00:00:00 2001 From: David Thurstenson Date: Sun, 6 Jun 2021 13:06:02 -0500 Subject: [PATCH] Bashrc.wiki: update config sourcing code --- Bashrc.wiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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`.