mirror of
https://github.com/reactos/reactos.git
synced 2024-11-10 00:34:39 +00:00
4126817f7f
Addendum to df2a8c4
. s/media/medium/
15 lines
533 B
Batchfile
15 lines
533 B
Batchfile
@ECHO OFF
|
|
|
|
set DRIVE=
|
|
for %%X in (A B C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (if exist %%X:\AHK-Tests set DRIVE=%%X)
|
|
|
|
if not defined DRIVE (
|
|
dbgprint "AHK Application testing suite not present, skipping."
|
|
dbgprint "Insert ReactOS boot medium and try again."
|
|
exit /b 0
|
|
)
|
|
|
|
xcopy /Y /H /E %DRIVE%:\AHK-Tests\*.* %SystemRoot%\bin
|
|
REM Download Amine's rosautotest from svn
|
|
dwnl http://svn.reactos.org/amine/rosautotest.exe %SystemRoot%\system32\rosautotest.exe
|
|
dbgprint "....AHK Application testing suite added."
|