mirror of
https://github.com/mudler/LocalAI.git
synced 2024-06-07 19:40:48 +00:00
6d71dd7d98
Signed-off-by: mudler <mudler@mocaccino.org>
11 lines
116 B
Bash
Executable File
11 lines
116 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
cd /build
|
|
|
|
if [ "$REBUILD" != "false" ]; then
|
|
rm -rf ./local-ai
|
|
make build
|
|
fi
|
|
|
|
./local-ai "$@" |