File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ function RegisterExtractorPack(id)
64
64
65
65
-- for `dotnet test`, we should not append `-p:UseSharedCompilation=false` to the command line
66
66
-- if an `exe` or `dll` is passed as an argument as the call is forwarded to vstest.
67
- if testMatch and (arg :match (' %.exe$' ) or arg :match (' %.dll' )) then
67
+ if testMatch and (arg :match (' %.exe$' ) or arg :match (' %.dll' )) then
68
68
match = false
69
69
break
70
70
end
@@ -110,7 +110,7 @@ function RegisterExtractorPack(id)
110
110
invocation = {
111
111
path = AbsolutifyExtractorPath (id , compilerPath ),
112
112
arguments = {
113
- commandLineString = table.concat (argv , " " )
113
+ commandLineString = ArgvToCommandLineString (argv )
114
114
}
115
115
}
116
116
}
@@ -174,7 +174,7 @@ function RegisterExtractorPack(id)
174
174
seenCompilerCall = true
175
175
end
176
176
if seenCompilerCall then
177
- table.insert (extractorArgs , ' " ' .. arg .. ' " ' )
177
+ table.insert (extractorArgs , arg )
178
178
end
179
179
end
180
180
@@ -184,7 +184,7 @@ function RegisterExtractorPack(id)
184
184
invocation = {
185
185
path = AbsolutifyExtractorPath (id , extractor ),
186
186
arguments = {
187
- commandLineString = table.concat (extractorArgs , " " )
187
+ commandLineString = ArgvToCommandLineString (extractorArgs )
188
188
}
189
189
}
190
190
}
You can’t perform that action at this time.
0 commit comments