diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-02-15 20:10:00 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-02-15 20:10:00 +0800 |
commit | 12d6a9eb75f31b64cbc89eb3265805bc8dad01f0 (patch) | |
tree | 031a449c1222ef1705d34fbb22c11ef1ea388ee5 /make | |
parent | bf8b18fe8d2f3cc470021e32b9d5f11ec765a643 (diff) | |
download | lua-language-server-12d6a9eb75f31b64cbc89eb3265805bc8dad01f0.zip |
cleanup
Diffstat (limited to 'make')
-rw-r--r-- | make/bootstrap.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/bootstrap.lua b/make/bootstrap.lua index 42de853a..c820a869 100644 --- a/make/bootstrap.lua +++ b/make/bootstrap.lua @@ -1,7 +1,7 @@ local main, exec
local i = 1
while arg[i] do
- if arg[i] == '-E' then
+ if arg[i] == '-E' then
elseif arg[i] == '-e' then
i = i + 1
local expr = assert(arg[i], "'-e' needs argument")
|