[xharness] Fix typo when launching mlaunch to get crash reports. (#7234)

This commit is contained in:
Rolf Bjarne Kvinge 2019-10-15 21:59:35 +02:00 коммит произвёл GitHub
Родитель 5e837a755a
Коммит cd2e86e86d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -930,7 +930,7 @@ namespace xharness
var crash_report_target = Logs.Create (name, $"Crash report: {name}", timestamp: false);
var sb = new List<string> ();
sb.Add ($"--download-crash-report={file}");
sb.Add ($" --download-crash-report-to={crash_report_target.Path}");
sb.Add ($"--download-crash-report-to={crash_report_target.Path}");
sb.Add ("--sdkroot");
sb.Add (Harness.XcodeRoot);
if (!string.IsNullOrEmpty (DeviceName)) {