ColorTool: Fix the included all.bat batch file

This batch file doesn't work if you use build.bat to build
the program, as all.bat looks for ct.exe rather than colortool.exe.
Fortunately, fixing the batch file is almost as easy as working around
its bug manually.
This commit is contained in:
Michael Ratanapintha 2017-08-14 21:49:42 -07:00
parent 7899586b81
commit f757ecaa29

View file

@ -9,6 +9,6 @@ rem All of the previously viewed tables will display the current scheme's co
for %%i in (schemes\*) do (
echo %%i
ct.exe "%%i"
.\colortool.exe "%%i"
pause
)
)