Bug in install script of Scorpio

Discussion of chess software programming and technical issues.

Moderators: hgm, Rebel, chrisw

frcha
Posts: 221
Joined: Thu Jan 28, 2010 5:47 pm

Bug in install script of Scorpio

Post by frcha »

There is an error in install.bat of scorpio that makes it impossible to install the engine correctly:

Code: Select all

IF %GPUS% NEQ 0 (
    cd %EGBB%
    CALL device.exe

needs to be:

Code: Select all

IF %GPUS% NEQ 0 (
	cd %egbbp%
    CALL device.exe

device.exe is not found error happens.

Maybe others can confirm for windows.
Daniel Shawul
Posts: 4185
Joined: Tue Mar 14, 2006 11:34 am
Location: Ethiopia

Re: Bug in install script of Scorpio

Post by Daniel Shawul »

Thank you for pointing out the bug!
I recently changed from having separate directory for the dlls to putting them in the same directory as exe,
but forgot to change the directory EGBB has become invalid.

Daniel