diff options
author | Matt Campbell <xenolinguist@gmail.com> | 2011-10-19 22:02:48 -0500 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2011-10-20 16:26:28 +0200 |
commit | 36fe2c460c5ec35859b0bbd6c54b708850bb18a1 (patch) | |
tree | cdc12252dc4b178572cf9a15864d7b6fdcbfbcb2 /priv/templates | |
parent | fb8732085e8e851a4f0c9cc97d949c0dc489ce3d (diff) |
Don't run erl_args through set_trim
Args provided by erlsrv.exe were being mostly
discarded due to being processed through set_trim
Diffstat (limited to 'priv/templates')
-rw-r--r-- | priv/templates/simplenode.windows.start_erl.cmd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/templates/simplenode.windows.start_erl.cmd b/priv/templates/simplenode.windows.start_erl.cmd index 33d21d0..ef38d52 100644 --- a/priv/templates/simplenode.windows.start_erl.cmd +++ b/priv/templates/simplenode.windows.start_erl.cmd @@ -4,7 +4,7 @@ @rem Other args are position dependent. @set args="%*" @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_root %%K ) |