13 lines
169 B
Bash
13 lines
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"
|