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.
2 parents ed4ee3f + 1c9dff1 commit 0bcc02dCopy full SHA for 0bcc02d
bin/elixir.bat
@@ -1,12 +1,9 @@
1
@echo off
2
-set argc=0
3
-for %%A in (%*) do (
4
- if "%%A"=="--help" goto documentation
5
- if "%%A"=="-h" goto documentation
6
- if "%%A"=="/h" goto documentation
7
- set /A argc+=1
8
-)
9
-if %argc%==0 goto documentation
+
+if "%*"=="" goto documentation
+if "%1"=="--help" goto documentation
+if "%1"=="-h" goto documentation
+if "%1"=="/h" goto documentation
10
goto parseopts
11
12
:documentation
0 commit comments