Louis 1143bd3846
refactor: jan extensions (#799)
* refactor: rename plugin to extension
2023-12-01 11:30:29 +07:00

13 lines
299 B
Batchfile

@echo off
rem Attempt to run nitro_windows_amd64_cuda.exe
cd win-cuda
nitro.exe %*
rem Check the exit code of the previous command
if %errorlevel% neq 0 (
echo nitro_windows_amd64_cuda.exe encountered an error, attempting to run nitro_windows_amd64.exe...
cd ..\win-cpu
nitro.exe %*
)