mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2024-11-10 08:59:40 +00:00
adcca67efc
Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.eu.org>
10 lines
308 B
Bash
10 lines
308 B
Bash
#!/usr/bin/env bash
|
|
|
|
for file in "${HOME}"/.config/bash/tools/*.bashrc; do
|
|
if [ "$file" == "${HOME}/.config/bash/tools/automated-deploy.bashrc" ]; then
|
|
[[ $DEBUG != "" ]] && echo "avoiding source loop, skipping $file"
|
|
else
|
|
[[ $DEBUG != "" ]] && echo "sourcing $file"
|
|
source "$file"
|
|
fi
|
|
done
|