mirror of
https://github.com/ivabus/pantry
synced 2024-11-22 08:25:07 +03:00
parent
497a20ca2e
commit
a8574519fc
1 changed files with 8 additions and 1 deletions
|
@ -52,7 +52,14 @@ build:
|
|||
exit 1
|
||||
fi
|
||||
install -D props/entrypoint.sh {{prefix}}/entrypoint.sh
|
||||
install -D ggml-metal.metal {{prefix}}/bin/ggml-metal.metal
|
||||
if test -f ggml-metal.metal; then
|
||||
install -D ggml-metal.metal {{prefix}}/bin/ggml-metal.metal
|
||||
elif test -f ggml/src/ggml-metal.metal; then
|
||||
install -D ggml/src/ggml-metal.metal {{prefix}}/bin/ggml-metal.metal
|
||||
else
|
||||
echo "No ggml-metal.metal found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
- |
|
||||
mkdir -p {{prefix}}/share
|
||||
|
|
Loading…
Reference in a new issue