File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ $erl = (join-path $bin "erl.exe") #get erl.exe as werl.exe will open a new windo
44
55$boot = (join-path $Env: REL_DIR $Env: REL_NAME )
66
7- $argv = @ (" -boot" , $boot )
8- $argv += @ (" -config" , $Env: SYS_CONFIG_PATH )
9- $argv += @ (" -args_file" , $Env: VMARGS_PATH )
7+ $argv = @ (" -boot" , " `" $boot `" " )
8+ $argv += @ (" -config" , " `" $Env: SYS_CONFIG_PATH `" " )
9+ $argv += @ (" -args_file" , " `" $Env: VMARGS_PATH `" " )
1010$argv += @ (" -user" , " Elixir.IEx.CLI" )
1111$argv += @ (" -extra" , " --no-halt" , " +iex" )
1212
Original file line number Diff line number Diff line change @@ -15,4 +15,5 @@ where pwsh >nul 2>nul
1515if %ERRORLEVEL% equ 0 (
1616 set prog=pwsh
1717)
18- %prog% -NonInteractive -NoProfile -ExecutionPolicy Bypass -Command "& "%boot_script%" @args" %*
18+ %prog% -NonInteractive -NoProfile -ExecutionPolicy Bypass -Command "& '%boot_script%' @args" %*
19+
You can’t perform that action at this time.
0 commit comments