diff options
author | Ben Siraphob <bensiraphob@gmail.com> | 2023-03-22 00:37:02 -0500 |
---|---|---|
committer | Pavol Rusnak <pavol@rusnak.io> | 2023-03-23 17:51:26 +0100 |
commit | a18c19259a3cb9dec332d613e8f15704f678a468 (patch) | |
tree | bb865ee8b1bfcbf687b90d46ac04eb65fe5a3ee4 | |
parent | a50e39c6fe36be3de0941b3c05aaf9c37912fd47 (diff) |
Fix Nix build
-rw-r--r-- | flake.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -28,8 +28,8 @@ ]; installPhase = '' mkdir -p $out/bin - mv llama $out/bin/llama - mv quantize $out/bin/quantize + mv bin/main $out/bin/llama + mv bin/quantize $out/bin/quantize echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml cat ${./convert-pth-to-ggml.py} >> $out/bin/convert-pth-to-ggml chmod +x $out/bin/convert-pth-to-ggml |