We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb5c67b commit 6d57915Copy full SHA for 6d57915
bin/elixir.bat
@@ -1,5 +1,4 @@
1
@echo off
2
-SETLOCAL enabledelayedexpansion
3
set argc=0
4
for %%x in (%*) do set /A argc+=1
5
if %argc%== 0 (
@@ -117,9 +116,11 @@ for /f "usebackq" %%m in (`echo %par%^|findstr \--remsh`) do (
117
116
rem ******* assume all pre-params are parsed ********************
118
:expand_erl_libs
119
rem ******* expand all ebin paths as Windows does not support the ..\*\ebin wildcard ********************
+SETLOCAL enabledelayedexpansion
120
set ext_libs=
121
for /d %%d in ("%originPath%..\lib\*.") do (
122
set ext_libs=!ext_libs! -pa "%%~fd\ebin"
123
)
124
+SETLOCAL disabledelayedexpansion
125
:run
126
erl %ext_libs% -noshell %ELIXIR_ERL_OPTS% %parsErlang% -s elixir start_cli %beforeExtra% -extra %*
0 commit comments