Skip to content

Commit c729ff7

Browse files
authored
flake.nix: add all binaries from bin (abetlen#848)
1 parent 4579af9 commit c729ff7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

flake.nix

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,8 @@
2828
];
2929
installPhase = ''
3030
mkdir -p $out/bin
31-
mv bin/main $out/bin/llama
32-
mv bin/quantize $out/bin/quantize
33-
mv bin/embedding $out/bin/embedding
34-
mv bin/perplexity $out/bin/perplexity
31+
mv bin/* $out/bin/
32+
mv $out/bin/main $out/bin/llama
3533
3634
echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml
3735
cat ${./convert-pth-to-ggml.py} >> $out/bin/convert-pth-to-ggml

0 commit comments

Comments
 (0)