mirror of
https://github.com/mudler/LocalAI
synced 2026-05-24 09:28:23 +00:00
12 lines
197 B
Bash
12 lines
197 B
Bash
#!/bin/bash
|
|||
set -e
|
|||
|
|||
backend_dir=$(dirname $0)
|
|||
if [ -d $backend_dir/common ]; then
|
|||
source $backend_dir/common/libbackend.sh
|
|||
else
|
|||
source $backend_dir/../common/libbackend.sh
|
|||
fi
|
|||
|
|||
runUnittests
|