I have a batch script trying to execute out of anthill to get the folder names containing plsql to be compiled.
for /F %%a in ('dir /b D:\AHP_WorkDir\var\jobs\projects\rprt_test\rprt_test\plsql') do (
set FOLDER=%%a
echo *** PROCESSING FOLDER %FOLDER% ***
)
This echos * PROCESSING FOLDER *
as if the variable is not getting set, which I'm pretty sure is true after spending way too long on verifying it
So...What am I doing wrong?