Trying to loop through string separated by comma but getting error
%TEST was unexpected at this time.
set INPUT_STRING=%BAMBOO_RECORD_IDS%
for %%TEST in (%INPUT_STRING%) do (
echo %%TEST
}
Problem was with loop variable. We need to be using %%x or something
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.