소스 검색

Fix exe name for zip packaging on windows

The zip file encodes the OS and architecture, so keep the short exe name
Daniel Hiltgen 1 년 전
부모
커밋
40bc4622ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/build_windows.ps1

+ 1 - 1
scripts/build_windows.ps1

@@ -82,7 +82,7 @@ function buildOllama() {
         if ($LASTEXITCODE -ne 0) { exit($LASTEXITCODE)}
     }
     New-Item -ItemType Directory -Path .\dist\windows-amd64\ -Force
-    cp .\ollama.exe .\dist\windows-amd64\ollama-windows-amd64.exe
+    cp .\ollama.exe .\dist\windows-amd64\
 }
 
 function buildApp() {