dotfiles/dot.sh
2023-09-01 01:40:41 +02:00

13 lines
No EOL
169 B
Bash

#!/bin/sh
for lib in $(find ./lib -type f -name *.lib.sh); do
. $lib
done
__log_lvl=0
for crate in $(crates); do
debug "loading $crate..."
done
echo "OK"