mirror of
https://github.com/mudler/LocalAI.git
synced 2025-02-17 08:00:18 +00:00
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 "$@" |