fixed terminal_fancyfy not working for server

excluded fancyfy from source in for loop
added sourcing only the correct file
This commit is contained in:
Bryan Joshua Pedini 2023-12-14 14:24:21 +01:00
parent fdb5d070e4
commit e24f3337a1
1 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
for source in $(find "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" -type f | grep -v "_all"); do
for source in $(find "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)" -type f | grep -Ev "_all|terminal_fancyfying"); do
. "${source}"
done
. "$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &> /dev/null && pwd)/terminal_fancyfying_${TERMINAL_FANCYFY}"