@@ -22176,7 +22176,7 @@ const buildExec = () => {
2217622176 });
2217722177 }
2217822178 if (fullReport) {
22179- execArgs.push('-full', `${fullReport}`);
22179+ execArgs.push('-- full', `${fullReport}`);
2218022180 }
2218122181 if (flags) {
2218222182 flags.split(',').map((f) => f.trim()).forEach((f) => {
@@ -22187,22 +22187,22 @@ const buildExec = () => {
2218722187 execArgs.push('-g');
2218822188 }
2218922189 if (gcovArgs) {
22190- execArgs.push('-gcovArgs ', `${gcovArgs}`);
22190+ execArgs.push('--ga ', `${gcovArgs}`);
2219122191 }
2219222192 if (gcovIgnore) {
22193- execArgs.push('-gcovIgnore ', `${gcovIgnore}`);
22193+ execArgs.push('--gi ', `${gcovIgnore}`);
2219422194 }
2219522195 if (gcovInclude) {
22196- execArgs.push('-gcovInclude ', `${gcovInclude}`);
22196+ execArgs.push('--gI ', `${gcovInclude}`);
2219722197 }
2219822198 if (gcovExecutable) {
22199- execArgs.push('-gcovExecutable ', `${gcovExecutable}`);
22199+ execArgs.push('--gx ', `${gcovExecutable}`);
2220022200 }
2220122201 if (networkFilter) {
22202- execArgs.push('-networkFilter ', `${networkFilter}`);
22202+ execArgs.push('-i ', `${networkFilter}`);
2220322203 }
2220422204 if (networkPrefix) {
22205- execArgs.push('-networkPrefix ', `${networkPrefix}`);
22205+ execArgs.push('-k ', `${networkPrefix}`);
2220622206 }
2220722207 if (overrideBranch) {
2220822208 execArgs.push('-B', `${overrideBranch}`);
@@ -22236,10 +22236,10 @@ const buildExec = () => {
2223622236 execArgs.push('-r', `${slug}`);
2223722237 }
2223822238 if (swift) {
22239- execArgs.push('-xs');
22239+ execArgs.push('-- xs');
2224022240 }
2224122241 if (swift && swiftProject) {
22242- execArgs.push('-xsp', `${swiftProject}`);
22242+ execArgs.push('-- xsp', `${swiftProject}`);
2224322243 }
2224422244 if (upstream) {
2224522245 execArgs.push('-U', `${upstream}`);
@@ -22251,8 +22251,8 @@ const buildExec = () => {
2225122251 execArgs.push('-v');
2225222252 }
2225322253 if (xcode && xcodeArchivePath) {
22254- execArgs.push('-xc');
22255- execArgs.push('-xp', `${xcodeArchivePath}`);
22254+ execArgs.push('-- xc');
22255+ execArgs.push('-- xp', `${xcodeArchivePath}`);
2225622256 }
2225722257 if (uploaderVersion == '') {
2225822258 uploaderVersion = 'latest';
0 commit comments