Index: pkg/analysis_server/benchmark/integration/local_runner.dart |
diff --git a/pkg/analysis_server/benchmark/integration/local_runner.dart b/pkg/analysis_server/benchmark/integration/local_runner.dart |
index 78d8c2a78f0048b2a86a98b55b0f3a4e05db17bf..bd0ff6b07df09b9c768a62bcb0558ee898542292 100644 |
--- a/pkg/analysis_server/benchmark/integration/local_runner.dart |
+++ b/pkg/analysis_server/benchmark/integration/local_runner.dart |
@@ -51,11 +51,8 @@ main(List<String> args) { |
if (!new Directory(join(gitDir.path, outDirName)).existsSync()) { |
throw 'failed to find out or xcodebuild directory'; |
} |
- result = Process.runSync('ln', [ |
- '-s', |
- join(gitDir.path, outDirName), |
- join(tmpSrcDirPath, outDirName) |
- ]); |
+ result = Process.runSync('ln', |
+ ['-s', join(gitDir.path, outDirName), join(tmpSrcDirPath, outDirName)]); |
if (result.exitCode != 0) throw 'failed to link out or xcodebuild: $result'; |
/* |
* Collect arguments |