echodict/llama.cpp
version https://git-lfs.github.com/spec/v1 oid sha256:cfc44b7ba25614df70e6b65e3341cae0310163bd32fd31a6b928a542df433faf size 30786
0762
1:: MIT license2:: Copyright (C) 2024 Intel Corporation3:: SPDX-License-Identifier: MIT4 5 6set URL=%17set COMPONENTS=%28 9curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 510start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log11del %TEMP%\webimage.exe12if "%COMPONENTS%"=="" (13 webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=.14) else (15 webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=.16)17set installer_exit_code=%ERRORLEVEL%18rd /s/q "webimage_extracted"19exit /b %installer_exit_code%20 