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 82f800e commit 1c9dff1Copy full SHA for 1c9dff1
bin/elixir.bat
@@ -1,16 +1,9 @@
1
@echo off
2
3
-rem Mix handles its own help options (as when called by mix.bat)
4
-if not "%1"=="%1:mix%" goto parseopts
5
-
6
-set argc=0
7
-for %%A in (%*) do (
8
- if "%%A"=="--help" goto documentation
9
- if "%%A"=="-h" goto documentation
10
- if "%%A"=="/h" goto documentation
11
- set /A argc+=1
12
-)
13
-if %argc%==0 goto documentation
+if "%*"=="" goto documentation
+if "%1"=="--help" goto documentation
+if "%1"=="-h" goto documentation
+if "%1"=="/h" goto documentation
14
goto parseopts
15
16
:documentation
0 commit comments