scripts: template_setup_win: Fix toolchain list loading

`!` must be used instead of `%` inside a loop when referencing a
variable that is changed within the loop.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
Stephanos Ioannidis 2022-10-06 14:39:18 +09:00
parent 6e4bc280dc
commit c862dc8759
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ exit /b 0
REM # Initialise toolchain list
set TOOLCHAINS=
for /f %%t in (sdk_toolchains) do (
set TOOLCHAINS=%TOOLCHAINS% %%t
set TOOLCHAINS=!TOOLCHAINS! %%t
)
REM Initialise list of toolchains to install