Don't run erl_args through set_trim

Args provided by erlsrv.exe were being mostly
discarded due to being processed through set_trim
This commit is contained in:
Matt Campbell 2011-10-19 22:02:48 -05:00 committed by Tuncer Ayaz
parent fb8732085e
commit 36fe2c460c

View file

@ -4,7 +4,7 @@
@rem Other args are position dependent. @rem Other args are position dependent.
@set args="%*" @set args="%*"
@for /F "delims=++ tokens=1,2,3" %%I in (%args%) do @( @for /F "delims=++ tokens=1,2,3" %%I in (%args%) do @(
@call :set_trim erl_args %%I @set erl_args=%%I
@call :set_trim node_name %%J @call :set_trim node_name %%J
@call :set_trim node_root %%K @call :set_trim node_root %%K
) )