Skip to content

Commit 6ce5161

Browse files
author
José Valim
committed
Merge pull request #2175 from bitwalker/windows-shell-fixes
Fix bad conditional logic when checking for +iex
2 parents e39b32f + 6243bc8 commit 6ce5161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/elixir.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ if "%par%"=="""" (
6161
goto :expand_erl_libs
6262
)
6363
rem ******* EXECUTION OPTIONS **********************
64-
IF NOT "%par%"=="%par:+iex" (Set useWerl=1)
64+
IF "%par%"==""+iex"" (Set useWerl=1)
6565
rem ******* ERLANG PARAMETERS **********************
6666
IF NOT "%par%"=="%par:--detached=%" (Set parsErlang=%parsErlang% -detached)
6767
IF NOT "%par%"=="%par:--hidden=%" (Set parsErlang=%parsErlang% -hidden)

0 commit comments

Comments
 (0)