File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ function RegisterExtractorPack(id)
14
14
15
15
-- removes upsupported CLI arg including the following how_many args
16
16
function strip_unsupported_arg (args , arg , how_many )
17
- index = indexOf (args , arg )
17
+ local index = indexOf (args , arg )
18
18
if index then
19
19
table.remove (args , index )
20
20
while (how_many > 0 )
@@ -37,7 +37,7 @@ function RegisterExtractorPack(id)
37
37
-- without a proper -resource-dir compiler-specific headers cannot be found which leads to
38
38
-- broken extraction
39
39
function insert_resource_dir_if_needed (compilerPath , args )
40
- resource_dir_index = indexOf (args , ' -resource-dir' )
40
+ local resource_dir_index = indexOf (args , ' -resource-dir' )
41
41
if resource_dir_index then
42
42
return
43
43
end
You can’t perform that action at this time.
0 commit comments