Hi, here is the portion of code giving me trouble:
IF EXIST TH_BUILD_* (
ECHO A current build of Test Harness exists.
set /p delBuild=Delete preexisting build [y/n]?:
if "%delBuild%"=="y" (GOTO deleteandcontinue) else ( EXIT)
)
For some reason, no matter the input, the batch file exits. Why is this happening (deleteandcontinue is never reached)?
Thanks!