VisoMaster / Update_Portable.bat
romanfratric234's picture
Upload 123 files
2cc7a05 verified
Raw
History Blame Contribute Delete
318 Bytes
@echo off
:: Check if install.dat exists
if not exist install.dat (
echo install.dat file not found!
pause
exit /b 1
)
:: Read the cuda_version from install.dat
for /f "tokens=2 delims==" %%A in ('findstr "cuda_version" install.dat') do set CUDA_VERSION=%%A
call scripts\update_%CUDA_VERSION%.bat
pause