plugins cmd space in filename

This commit is contained in:
Oliver Bollmann 2015-11-26 17:42:50 +01:00
parent c9aca22162
commit 3360b2f8e7
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%