[STM32CubeProg] Fix trailing arguments for windows
"shift" has no effect on "%*" batch parameter; it only change index. Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
This commit is contained in:
parent
3d52d4c03e
commit
e167f91814
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ goto :opt
|
|||
shift
|
||||
shift
|
||||
if "%~1"=="" goto :prog
|
||||
set OPTS=%*
|
||||
set OPTS=%1 %2 %3 %4 %5 %6 %7 %8 %9
|
||||
goto :prog
|
||||
|
||||
:prog
|
||||
|
|
|
|||
Loading…
Reference in a new issue