summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@dashbit.co>2021-12-07 18:56:33 +0100
committerJosé Valim <jose.valim@dashbit.co>2021-12-08 23:50:38 +0100
commit6d5744ff8cedd9bcccbd67d5ea8f3c09425435ef (patch)
tree9c3296d80c8f36f6a74ec7f0d3ee2d63a47fdabe /bin
parenta66760e3cef11d4c58a31af8a911a2a3f38b16ee (diff)
downloadelixir-6d5744ff8cedd9bcccbd67d5ea8f3c09425435ef.tar.gz
Remove unecessary @ in bat file
Diffstat (limited to 'bin')
-rw-r--r--bin/iex.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/iex.bat b/bin/iex.bat
index f287cd1a9..98cdce75d 100644
--- a/bin/iex.bat
+++ b/bin/iex.bat
@@ -21,7 +21,7 @@ echo It accepts all other options listed by "elixir --help".
goto end
:run
-if defined IEX_WITH_WERL (@set __ELIXIR_IEX_FLAGS=--werl) else (set __ELIXIR_IEX_FLAGS=)
+if defined IEX_WITH_WERL (set __ELIXIR_IEX_FLAGS=--werl) else (set __ELIXIR_IEX_FLAGS=)
call "%~dp0\elixir.bat" --no-halt --erl "-noshell -user Elixir.IEx.CLI" +iex %__ELIXIR_IEX_FLAGS% %*
:end
endlocal