Skip to content

Commit bb98e77

Browse files
authored
nix: use convert.py instead of legacy wrapper convert-pth-to-ggml.py (#981)
1 parent 7a32fcb commit bb98e77

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

flake.nix

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
mv bin/* $out/bin/
3131
mv $out/bin/main $out/bin/llama
3232
33-
echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml
34-
cat ${./convert-pth-to-ggml.py} >> $out/bin/convert-pth-to-ggml
35-
chmod +x $out/bin/convert-pth-to-ggml
33+
echo "#!${llama-python}/bin/python" > $out/bin/convert.py
34+
cat ${./convert.py} >> $out/bin/convert.py
35+
chmod +x $out/bin/convert.py
3636
'';
3737
meta.mainProgram = "llama";
3838
};

0 commit comments

Comments
 (0)