Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c38d9 commit f1786f4Copy full SHA for f1786f4
1 file changed
swift/tools/tracing-config.lua
@@ -14,7 +14,7 @@ function RegisterExtractorPack(id)
14
15
-- removes upsupported CLI arg including the following how_many args
16
function strip_unsupported_arg(args, arg, how_many)
17
- index = indexOf(args, arg)
+ local index = indexOf(args, arg)
18
if index then
19
table.remove(args, index)
20
while (how_many > 0)
@@ -37,7 +37,7 @@ function RegisterExtractorPack(id)
37
-- without a proper -resource-dir compiler-specific headers cannot be found which leads to
38
-- broken extraction
39
function insert_resource_dir_if_needed(compilerPath, args)
40
- resource_dir_index = indexOf(args, '-resource-dir')
+ local resource_dir_index = indexOf(args, '-resource-dir')
41
if resource_dir_index then
42
return
43
end
0 commit comments