Merge pull request #389 from obi458/issue#387

plugins cmd space in filename
This commit is contained in:
Feng Lee 2015-11-27 20:01:40 +08:00
commit d608534872
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ cd /d !dest_path!..\plugins
set current_path=%cd% set current_path=%cd%
set plugins= set plugins=
for /d %%P in (*) do ( for /d %%P in (*) do (
set "plugins=!plugins!!current_path!\%%P\ebin " set "plugins=!plugins!"!current_path!\%%P\ebin" "
) )
cd /d %node_root% cd /d %node_root%

View File

@ -40,7 +40,7 @@ cd /d !dest_path!..\plugins
set current_path=%cd% set current_path=%cd%
set plugins= set plugins=
for /d %%P in (*) do ( for /d %%P in (*) do (
set "plugins=!plugins!!current_path!\%%P\ebin " set "plugins=!plugins!"!current_path!\%%P\ebin" "
) )
cd /d %node_root% cd /d %node_root%
@%erl_exe% %erl_args% -boot %boot_file% -config %app_config% -args_file %vm_args% -pa %plugins% @%erl_exe% %erl_args% -boot %boot_file% -config %app_config% -args_file %vm_args% -pa %plugins%