Skip to content

Commit

Permalink
fix: dll path #1289
Browse files Browse the repository at this point in the history
  • Loading branch information
mikbry committed Sep 25, 2024
1 parent 6fcdf41 commit 4697b07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/update-version.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ const tauriWindowsToml =
version = "${msiVersion}"
# fix missing dll files for Windows version
[tauri.bundle.resources]
"binaries/llama.cpp/llama.dll" = "llama.dll"
"binaries/llama.cpp/ggml.dll" = "ggml.dll"
"binaries/llama.cpp/llama.dll" = "./"
"binaries/llama.cpp/ggml.dll" = "./"
`;
await writeFile('./webapp/native/Tauri.windows.toml', tauriWindowsToml);

Expand Down
4 changes: 2 additions & 2 deletions webapp/native/Tauri.windows.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
version = "1.0.229"
# fix missing dll files for Windows version
[tauri.bundle.resources]
"binaries/llama.cpp/llama.dll" = "llama.dll"
"binaries/llama.cpp/ggml.dll" = "ggml.dll"
"binaries/llama.cpp/llama.dll" = "./"
"binaries/llama.cpp/ggml.dll" = "./"

0 comments on commit 4697b07

Please sign in to comment.